UNPKG

269 BTypeScriptView Raw
1/**
2 * Generic resource binding methods.
3 */
4export interface IBind<T> {
5 /**
6 * @returns true, if successful
7 */
8 bind(opt: T): boolean;
9 /**
10 * @returns true, if successful
11 */
12 unbind(opt: T): boolean;
13}
14//# sourceMappingURL=bind.d.ts.map
\No newline at end of file