4 lines
288 B
TypeScript
4 lines
288 B
TypeScript
/** This code was borrowed form cbor-x under the MIT license. */
|
|
export declare const decodeAscii: (src: Uint8Array, position: number, length: number) => string | undefined;
|
|
export declare const decodeAsciiMax15: (src: Uint8Array, position: number, length: number) => string | undefined;
|