rangoo94/easen-tools

View on GitHub
packages/uuid/index.d.ts

Summary

Maintainability
A
0 mins
Test Coverage
declare module '@easen-tools/uuid' {
  interface UuidGenerator {
    (): string;
    bin: () => number[];
  }

  export const test: (uuid: string) => boolean;
  export const generate: UuidGenerator;
  export const generateUnsafe: UuidGenerator;
}