UNPKG

typia

Version:

Superfast runtime validators with only one line

14 lines (12 loc) 283 B
import ts from "typescript"; export interface ICheckEntry { expected: string; expression: ts.Expression | null; conditions: ICheckEntry.ICondition[][]; } export namespace ICheckEntry { export interface ICondition { expected: string; expression: ts.Expression; } }