mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
9 lines
342 B
TypeScript
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
|