mirror of
https://github.com/appy-one/acebase.git
synced 2026-06-30 06:02:02 -06:00
17 lines
No EOL
550 B
TypeScript
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
|