UNPKG

pseudolocale

Version:

Simple pseudolocale (psuedolocalization) for strings

13 lines (11 loc) 292 B
type Options = { prepend?: string; append?: string; delimiter?: string; startDelimiter?: string; endDelimiter?: string; extend?: number; override?: string; }; declare function str(str: string, customOptions?: Options): string; export { Options, str as default };