-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.d.ts
More file actions
13 lines (13 loc) · 778 Bytes
/
index.d.ts
File metadata and controls
13 lines (13 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
import libTransform from "./lib/transform";
import libValidate from "./lib/validate";
export declare const get: (input: import("./lib/util").Input, prop: import("./lib/util").InputPath, defaultValue?: any) => any;
export declare const set: (input: import("./lib/util").Input, prop: import("./lib/util").InputPath, value: any) => void;
export declare const transform: typeof libTransform;
export declare const validate: typeof libValidate;
declare const _default: {
get: (input: import("./lib/util").Input, prop: import("./lib/util").InputPath, defaultValue?: any) => any;
set: (input: import("./lib/util").Input, prop: import("./lib/util").InputPath, value: any) => void;
transform: typeof libTransform;
validate: typeof libValidate;
};
export default _default;