UNPKG

runtypes

Version:

Runtime validation for static types

10 lines (9 loc) 190 B
import Runtype from "./Runtype.js"; /** * Validates anything. */ interface Unknown extends Runtype<unknown> { tag: "unknown"; } declare const Unknown: Unknown; export default Unknown;