UNPKG

298 BTypeScriptView Raw
1import { Predicates } from './predicates';
2export interface Modifiers {
3 /**
4 Make the following predicate optional so it doesn't fail when the value is `undefined`.
5 */
6 readonly optional: Predicates;
7}
8declare const _default: <T>(object: T) => T & Modifiers;
9export default _default;