UNPKG

igniteui-react-core

Version:
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;