acebase/dist/types/node-info.d.ts
Ewout Stortenbeker e473fe787a chore: build
2022-11-21 15:28:09 +01:00

17 lines
No EOL
550 B
TypeScript

import { NodeAddress } from './node-address';
export declare class NodeInfo {
path?: string;
type?: number;
index?: number;
key?: string;
exists?: boolean;
/** TODO: Move this to BinaryNodeInfo */
address?: NodeAddress;
value?: any;
childCount?: number;
constructor(info: Partial<NodeInfo>);
get valueType(): number;
get valueTypeName(): "object" | "binary" | "array" | "boolean" | "date" | "number" | "reference" | "string" | "bigint";
toString(): string;
}
//# sourceMappingURL=node-info.d.ts.map