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.

index.d.ts 305B

1234567891011
  1. import InnerNode from './InnerNode';
  2. import { NodeType } from './node';
  3. declare class SHAMap {
  4. root: InnerNode;
  5. constructor();
  6. get hash(): string;
  7. addItem(tag: string, data: string, type: NodeType): void;
  8. }
  9. export * from './node';
  10. export default SHAMap;
  11. //# sourceMappingURL=index.d.ts.map