nxkit
Version:
This is a collection of tools, independent of any other libraries
11 lines (10 loc) • 364 B
TypeScript
import uuid from './uuid';
export * from './uuid';
export * from './md5';
export * from './sha1';
declare const _default: {
uuid: typeof uuid;
md5: (s: string | Uint8Array | Uint8ClampedArray) => import("../buffer").InterfaceBuffer;
sha1: (s: string | Uint8Array | Uint8ClampedArray) => import("../buffer").InterfaceBuffer;
};
export default _default;