bitloops-gherkin
Version:
bitloops-gherkin is a node.js package that allows you to generate Gherkin tables in Cucumber feature files using Google Sheets
24 lines (20 loc) • 559 B
TypeScript
/**
* Decodes a string containing an array of comma separated number
* representing a Uint8Array.
*/
export const decode: (encodedString: string) => string;
/**
* Shorthand for decode.
* Decodes a string containing an array of comma separated number
* representing a Uint8Array.
*/
export const d: (encodedString: string) => string;
/**
* Encodes a string to a Uint8Array.
*/
export const encode: (input?: string) => Uint8Array;
/**
* Shorthand for encode.
* Encodes a string to a Uint8Array.
*/
export const e: (input?: string) => Uint8Array;