DefinitelyTyped/types/mdurl/encode.d.ts

8 lines
200 B
TypeScript
Raw Permalink Normal View History

declare namespace encode {
const defaultChars: string;
const componentChars: string;
}
declare function encode(str: string, exclude?: string, keepEscaped?: boolean): string;
export = encode;