UNPKG

@drieam/common

Version:

Default Drieam api wrapper

9 lines (8 loc) 440 B
import { Dictionary } from "lodash"; import get from "lodash/get"; import camelCase from "lodash/camelCase"; declare function isNotNil(x: any): boolean; declare function req(appName: string, propName: string, props: Dictionary<any>): void; declare function delay(callback: any, ms?: number): () => void; declare function promiseNoop<T = any>(filters?: any): Promise<T>; export { get, isNotNil, req, delay, camelCase, promiseNoop };