import { VApplication } from "./VApplication"; import { VBindings } from "./VBindings"; /** * Initialization arguments for bindings. */ export interface VBindingsInit { /** * The parent bindings, if any. */ parent?: VBindings; /** * The change tracker, if any. * @param identifier The identifier that changed. */ onChange?: (identifier: string) => void; /** * The virtual application instance, if any. */ vApplication?: VApplication; }