blob: 10310672893d09deb9d060aa2153c9e16608eac2 (
plain)
1
2
3
4
5
6
|
/**
* @author jdiaz5513
*/
import { ListCtor } from "./list";
import { Struct, StructCtor } from "./struct";
export declare function CompositeList<T extends Struct>(CompositeClass: StructCtor<T>): ListCtor<T>;
|