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