react-ngl
Version:
React wrapper for ngl
13 lines (12 loc) • 380 B
TypeScript
/**
* @file Component Collection
* @author Alexander Rose <alexander.rose@weirdbyte.de>
* @private
*/
import Component from './component';
import Collection from './collection';
declare class ComponentCollection extends Collection<Component> {
addRepresentation(name: string, params: any): this;
autoView(duration: number): this;
}
export default ComponentCollection;