init component
This commit is contained in:
14
node_modules/buetify/lib/composables/popupController/providePopupController.d.ts
generated
vendored
Executable file
14
node_modules/buetify/lib/composables/popupController/providePopupController.d.ts
generated
vendored
Executable file
@@ -0,0 +1,14 @@
|
||||
import { IO } from 'fp-ts/lib/IO';
|
||||
import { VNode } from 'vue';
|
||||
import { Transition } from '../../types/Transition';
|
||||
import { Remove } from '../shared';
|
||||
export declare const POPUP_CONTROLLER_SYMBOL: unique symbol;
|
||||
export interface ShowPopupOptions {
|
||||
render: IO<VNode[]>;
|
||||
transition?: Transition;
|
||||
}
|
||||
export interface PopupControllerInjection {
|
||||
showPopup: (options: ShowPopupOptions) => Remove;
|
||||
}
|
||||
export declare const DEFAULT_POPUP_CONTROLLER_INJECTION: PopupControllerInjection;
|
||||
export declare function providePopupController(showPopup: (options: ShowPopupOptions) => Remove): PopupControllerInjection;
|
||||
Reference in New Issue
Block a user