DefinitelyTyped/types/mdurl/encode.d.ts
Junyoung Choi 7e936df852 Add mdurl (#20581)
* Add mdurl

* Add strictFunctionTypes property to tsconfig
2017-10-16 14:49:43 -07:00

8 lines
200 B
TypeScript

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