You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

node.d.ts 294B

1234567891011
  1. export declare enum NodeType {
  2. INNER = 1,
  3. TRANSACTION_NO_METADATA = 2,
  4. TRANSACTION_METADATA = 3,
  5. ACCOUNT_STATE = 4
  6. }
  7. export declare abstract class Node {
  8. abstract get hash(): string;
  9. abstract addItem(_tag: string, _node: Node): void;
  10. }
  11. //# sourceMappingURL=node.d.ts.map