-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ssv.d.ts
22 lines (21 loc) · 842 Bytes
/
ssv.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
declare module ssv {
export function all(set: any, search: any): boolean;
export function and(left: any, right: any): string;
export function any(set: any, search: any): boolean;
export function at(set: any, index: any): string;
export function blank(set: any): boolean;
export function count(set: any): number;
export function edit(set: any, boss: any): string;
export function gum(set: any, more: any): string;
export function jam(set: any): string;
export function not(set: any, less: any): string;
export function or(set: any, more: any): string;
export function say(set: any): string;
export function split(set: any): string[];
export function state(set: any): string;
export function xor(left: any, right: any): string;
export function yolo(set: any): string;
}
declare module "ssv" {
export = ssv;
}