@tabular-json/tabular-json
Version:
Tabular-JSON: a superset of JSON with CSV-like tables
5 lines • 360 B
TypeScript
import type { GenericObject, NestedObject, Path } from './types.d.ts';
export declare function isObject(value: unknown): value is GenericObject<unknown>;
export declare function getIn(object: NestedObject, path: Path): unknown;
export declare function setIn(object: NestedObject, path: Path, value: unknown): NestedObject;
//# sourceMappingURL=objects.d.ts.map