mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +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';
|
||||
|
||||
export type NotifyMessage = string | number;
|
||||
@ -16,7 +15,7 @@ export type NotifyOptions = {
|
||||
onClick?: ((event: Event) => void) | null;
|
||||
};
|
||||
|
||||
export interface VanNotify extends Vue {
|
||||
export interface VanNotify {
|
||||
message: NotifyMessage;
|
||||
color: 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';
|
||||
|
||||
type ToastMessage = string | number;
|
||||
@ -26,7 +25,7 @@ export type ToastOptions = {
|
||||
getContainer?: string | (() => Element);
|
||||
};
|
||||
|
||||
export interface VanToast extends Vue, VanPopupMixin {
|
||||
export interface VanToast extends VanPopupMixin {
|
||||
type: ToastType;
|
||||
position: ToastPosition;
|
||||
loadingType: ToastLoadingType;
|
||||
|
Loading…
x
Reference in New Issue
Block a user