util.d.ts 334 B

1234567
  1. /// <reference types="node" />
  2. export declare function toArray(msg: any, enc: any): any[];
  3. export declare function encodeHex(msg: Buffer | Uint8Array): string;
  4. export declare function uuid(): string;
  5. export declare function isObject(item: any): boolean;
  6. export declare function mergeDeep(target: object, source: object): {} & object;