UNPKG

@matatbread/typia

Version:

Superfast runtime validators with only one line

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