mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
types: remove extends Vue
This commit is contained in:
parent
0acbc6ec21
commit
c3ad8bf5c4
11
types/jsx.d.ts
vendored
11
types/jsx.d.ts
vendored
@ -1,11 +0,0 @@
|
|||||||
import Vue, { VNode } from 'vue';
|
|
||||||
|
|
||||||
declare global {
|
|
||||||
namespace JSX {
|
|
||||||
interface Element extends VNode {}
|
|
||||||
interface ElementClass extends Vue {}
|
|
||||||
interface IntrinsicElements {
|
|
||||||
[elem: string]: any;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
3
types/notify.d.ts
vendored
3
types/notify.d.ts
vendored
@ -1,4 +1,3 @@
|
|||||||
import Vue from 'vue';
|
|
||||||
import { VanComponent } from './component';
|
import { VanComponent } from './component';
|
||||||
|
|
||||||
export type NotifyMessage = string | number;
|
export type NotifyMessage = string | number;
|
||||||
@ -16,7 +15,7 @@ export type NotifyOptions = {
|
|||||||
onClick?: ((event: Event) => void) | null;
|
onClick?: ((event: Event) => void) | null;
|
||||||
};
|
};
|
||||||
|
|
||||||
export interface VanNotify extends Vue {
|
export interface VanNotify {
|
||||||
message: NotifyMessage;
|
message: NotifyMessage;
|
||||||
color: string;
|
color: string;
|
||||||
background: string;
|
background: string;
|
||||||
|
3
types/toast.d.ts
vendored
3
types/toast.d.ts
vendored
@ -1,4 +1,3 @@
|
|||||||
import Vue from 'vue';
|
|
||||||
import { VanPopupMixin } from './mixins/popup';
|
import { VanPopupMixin } from './mixins/popup';
|
||||||
|
|
||||||
type ToastMessage = string | number;
|
type ToastMessage = string | number;
|
||||||
@ -26,7 +25,7 @@ export type ToastOptions = {
|
|||||||
getContainer?: string | (() => Element);
|
getContainer?: string | (() => Element);
|
||||||
};
|
};
|
||||||
|
|
||||||
export interface VanToast extends Vue, VanPopupMixin {
|
export interface VanToast extends VanPopupMixin {
|
||||||
type: ToastType;
|
type: ToastType;
|
||||||
position: ToastPosition;
|
position: ToastPosition;
|
||||||
loadingType: ToastLoadingType;
|
loadingType: ToastLoadingType;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user