blob: 6dc35c136156c9addfa5da167849eba03162b6d8 (
plain)
1
2
3
4
5
6
7
8
9
|
/**
* @author jdiaz5513
*/
import { Interface } from "./interface";
import { ListCtor } from "./list";
import { PointerList } from "./pointer-list";
export const InterfaceList: ListCtor<Interface> = PointerList(Interface);
|