File size: 227 Bytes
5641073
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
/**
 * @author jdiaz5513
 */

import { Interface } from "./interface";
import { ListCtor } from "./list";
import { PointerList } from "./pointer-list";

export const InterfaceList: ListCtor<Interface> = PointerList(Interface);