UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

16 lines (15 loc) 297 B
import { Type } from "./type"; /** * @hidden */ export interface IPool$1<T> { create: () => T; disactivate: (arg1: T) => void; activate: (arg1: T) => void; destroy: (arg1: T) => void; clear(): void; } /** * @hidden */ export declare let IPool$1_$type: Type;