UNPKG

@loaders.gl/wkt

Version:

Loader and Writer for the WKT (Well Known Text) Format

15 lines 409 B
/** * Encode a Uint8Array to a hex string * * @param array Bytes to encode to string * @return hex string */ export declare function encodeHex(array: Uint8Array): string; /** * Decodes a hex string to a Uint8Array * * @param string hex string to decode to Uint8Array * @return Uint8Array */ export declare function decodeHex(string: string): Uint8Array; //# sourceMappingURL=hex-transcoder.d.ts.map