blob: da4539477b6a1bab2fd9bfe86ddf0cf74f42985e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
export declare const url_decode: (x: string) => string;
export declare const url_encode: (x: string) => string;
export declare const cgi_escape: (x: string) => string;
export declare const uri_escape: (x: string) => string;
declare const rSlugifyReplacers: {
raw: RegExp;
default: RegExp;
pretty: RegExp;
ascii: RegExp;
latin: RegExp;
none: null;
};
export declare function slugify(str: string, mode?: keyof typeof rSlugifyReplacers, cased?: boolean): string;
export {};
|