django-vue3-admin-web/node_modules/@fast-crud/ui-interface/dist/d/context.d.ts
2025-10-20 21:21:14 +08:00

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;