import { IDataHook } from "model-react"; import { ISubscribable } from "./_types/ISubscribable"; /** * Adjusts the given subscribable using the passed function * @param data The data to be augmented, either plain data, of subscribable data * @param extendData The function to transform the data * @returns The new subscribable data */ export declare function adjustSubscribable(data: ISubscribable, extendData: (bindings: T, hook: IDataHook) => T): ISubscribable; //# sourceMappingURL=adjustSubscribable.d.ts.map