UNPKG

normul

Version:

Normul is a tiny TypeScript/JavaScript library for data normalization and transformation

6 lines (5 loc) 221 B
import type { ParseContext } from '../../types.js'; import { Schema } from '../Schema.js'; export declare class StringSchema extends Schema<string> { protected _normalize(input: unknown, ctx: ParseContext): string; }