DefinitelyTyped/types/fast64/fast64-tests.ts
2018-12-11 12:22:39 +00:00

9 lines
342 B
TypeScript

import * as fast64 from "fast64";
fast64.encode(""); // $ExpectType string
fast64.decode(""); // $ExpectType string
fast64.decode("", { uint8Array: true }); // $ExpectType Uint8Array
fast64.urlencode(""); // $ExpectType string
fast64.urldecode(""); // $ExpectType string
fast64.urldecode("", { uint8Array: true }); // $ExpectType Uint8Array