UNPKG

@thi.ng/api

Version:
14 lines 269 B
/** * Generic resource binding methods. */ export interface IBind<T> { /** * @returns true, if successful */ bind(opt: T): boolean; /** * @returns true, if successful */ unbind(opt: T): boolean; } //# sourceMappingURL=bind.d.ts.map