DefinitelyTyped/types/mdurl/decode.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
179 B
TypeScript

declare namespace decode {
const defaultChars: string;
const componentChars: string;
}
declare function decode(input: string, exclude?: string): string;
export = decode;