iso-signatures
Version:
Signatures tooling.
14 lines • 327 B
TypeScript
export namespace spki {
export { encode };
export { decode };
}
/**
* @param {Uint8Array} key
*/
declare function encode(key: Uint8Array): Uint8Array<ArrayBuffer>;
/**
* @param {Uint8Array} info
*/
declare function decode(info: Uint8Array): Uint8Array<ArrayBufferLike>;
export {};
//# sourceMappingURL=spki.d.ts.map