UNPKG

@codethread/tstl-validate

Version:

Fork and adaptation of valibot for use in typescript-to-lua

10 lines (9 loc) 324 B
/** @noSelfInFile */ import type { ParseResult } from '../../types'; /** * Creates a transformation function that removes the leading white space and * line terminator characters from a string. * * @returns A transformation function. */ export declare function toTrimmedStart(): (input: string) => ParseResult<string>;