UNPKG

shapeit

Version:

Object validation tools for Javascript and, specially, Typescript

23 lines (22 loc) 1.01 kB
export { default as guard } from './guard'; export { default as arrayOf } from './arrayOf'; export { default as deepPartial } from './deepPartial'; export { default as is } from './is'; export { default as maybe } from './maybe'; export { default as nullable } from './nullable'; export { default as oneOf } from './oneOf'; export { default as partial } from './partial'; export { default as shape } from './shape'; export { default as tuple } from './tuple'; export { default as narrow } from './narrow'; export { default as literal } from './literal'; export { default as pick } from './pick'; export { default as omit } from './omit'; export { default as instanceOf } from './instanceOf'; export { default as any } from './any'; export { default as unknown } from './unknown'; export { default as never } from './never'; export { default as allOf } from './allOf'; export { default as looseShape } from './looseShape'; export { default as strictShape } from './strictShape'; export { custom } from './guard';