10 lines
286 B
TypeScript
10 lines
286 B
TypeScript
import type { Ref } from "vue";
|
|
import type { UiInterface } from "./ui-interface";
|
|
export declare class UiContext {
|
|
ref?: Ref<UiInterface>;
|
|
set(ui: UiInterface): void;
|
|
get(): UiInterface;
|
|
}
|
|
export declare const uiContext: UiContext;
|
|
export default function (): UiInterface;
|