source: frontend/node_modules/reusify/reusify.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 212 bytes
RevLine 
[9af201e]1interface Node {
2 next: Node | null;
3}
4
5interface Constructor<T> {
6 new(): T;
7}
8
9declare function reusify<T extends Node>(constructor: Constructor<T>): {
10 get(): T;
11 release(node: T): void;
12};
13
14export = reusify;
Note: See TracBrowser for help on using the repository browser.