Merge pull request #6380 from sumomo015/sumomo015-6199-v3
fix(v3): global vue type augmentationpull/6506/head
commit
410ce99d0b
|
@ -358,16 +358,7 @@ export declare function usePrimeVue(): {
|
||||||
declare const plugin: Plugin;
|
declare const plugin: Plugin;
|
||||||
export default plugin;
|
export default plugin;
|
||||||
|
|
||||||
declare module 'vue/types/vue' {
|
declare module 'vue' {
|
||||||
interface Vue {
|
|
||||||
$primevue: {
|
|
||||||
config: PrimeVueConfiguration;
|
|
||||||
changeTheme: PrimeVueChangeTheme;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
declare module '@vue/runtime-core' {
|
|
||||||
interface ComponentCustomProperties {
|
interface ComponentCustomProperties {
|
||||||
$primevue: {
|
$primevue: {
|
||||||
config: PrimeVueConfiguration;
|
config: PrimeVueConfiguration;
|
||||||
|
|
|
@ -27,13 +27,7 @@ export interface ConfirmationServiceMethods {
|
||||||
close(): void;
|
close(): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module 'vue/types/vue' {
|
declare module 'vue' {
|
||||||
interface Vue {
|
|
||||||
$confirm: ConfirmationServiceMethods;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
declare module '@vue/runtime-core' {
|
|
||||||
interface ComponentCustomProperties {
|
interface ComponentCustomProperties {
|
||||||
$confirm: ConfirmationServiceMethods;
|
$confirm: ConfirmationServiceMethods;
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,13 +25,7 @@ export interface DialogServiceMethods {
|
||||||
open(content: any, options?: DynamicDialogOptions): DynamicDialogInstance;
|
open(content: any, options?: DynamicDialogOptions): DynamicDialogInstance;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module 'vue/types/vue' {
|
declare module 'vue' {
|
||||||
interface Vue {
|
|
||||||
$dialog: DialogServiceMethods;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
declare module '@vue/runtime-core' {
|
|
||||||
interface ComponentCustomProperties {
|
interface ComponentCustomProperties {
|
||||||
$dialog: DialogServiceMethods;
|
$dialog: DialogServiceMethods;
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,13 +39,7 @@ export interface ToastServiceMethods {
|
||||||
removeAllGroups(): void;
|
removeAllGroups(): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module 'vue/types/vue' {
|
declare module 'vue' {
|
||||||
interface Vue {
|
|
||||||
$toast: ToastServiceMethods;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
declare module '@vue/runtime-core' {
|
|
||||||
interface ComponentCustomProperties {
|
interface ComponentCustomProperties {
|
||||||
$toast: ToastServiceMethods;
|
$toast: ToastServiceMethods;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue