mirror of
https://github.com/appy-one/acebase.git
synced 2026-06-30 06:02:02 -06:00
18 lines
No EOL
494 B
TypeScript
18 lines
No EOL
494 B
TypeScript
export declare class NodeAddress {
|
|
readonly path: string;
|
|
constructor(path: string);
|
|
toString(): string;
|
|
/**
|
|
* Compares this address to another address
|
|
*/
|
|
equals(address: NodeAddress): boolean;
|
|
}
|
|
export declare class RemovedNodeAddress extends NodeAddress {
|
|
constructor(path: string);
|
|
toString(): string;
|
|
/**
|
|
* Compares this address to another address
|
|
*/
|
|
equals(address: NodeAddress): boolean;
|
|
}
|
|
//# sourceMappingURL=node-address.d.ts.map
|