You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

stringConversion.d.ts 274B

12345
  1. /// <reference types="node" />
  2. declare function convertStringToHex(string: string): string;
  3. declare function convertHexToString(hex: string, encoding?: BufferEncoding): string;
  4. export { convertHexToString, convertStringToHex };
  5. //# sourceMappingURL=stringConversion.d.ts.map