UNPKG

type-arango

Version:

ArangoDB Foxx decorators and utilities for TypeScript

12 lines (11 loc) 355 B
declare type Presence = 'required' | 'optional'; /** * Convert type or alias to joi */ export declare function toJoi(inp: any, presence?: Presence): any; /** * Enhance joi a little */ export declare function enjoi(inp?: string | any, presence?: Presence): any; export declare function joiDefaults(obj: any, override?: any): any; export {};