/** * Represents a parser-type. */ export type ParserType = /** * Indicates the default parser-type. */ | "text" /** * Indicates a decimal parser-type. */ | "numeric";