type-fns
Version:
A set of types, type checks, and type guards for simpler, safer, and easier to read code.
20 lines (19 loc) • 674 B
TypeScript
export * from './checks/hasId';
export * from './checks/hasUuid';
export * from './checks/hasMetadata';
export * from './checks/isPresent';
export * from './checks/isOfEnum';
export * from './wrappers/withNot';
export * from './checks/isAFunction';
export * from './checks/isAPromise';
export * from './types/PickOne';
export * from './checks/isNotNull';
export * from './checks/isNotUndefined';
export * from './types/DropFirst';
export * from './companions/omit';
export * from './companions/pick';
export * from './types/Literalize';
export * from './wrappers/withAssure';
export * from './checks/isKeyOf';
export * from './types/PickAny';
export * from './types/Empty';