@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
12 lines (11 loc) • 497 B
TypeScript
import { Store } from "./Store";
export declare class FocusStore extends Store {
private focusedElement;
mutations: {
setFocusedElement: import("./Store").StoreMutation<(element: any) => void, (element: any) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>;
};
actions: {
onFocus: import("./Store").StoreAction<unknown, () => void, (result: void) => void, (failureReason: any) => void, () => Promise<void>>;
};
protected onActivated(): void;
}