types(Toast): fix Toast.clear typing (#10699)

This commit is contained in:
neverland 2022-06-11 15:00:07 +08:00 committed by GitHub
parent bab0636014
commit 525653b68d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 12 deletions

View File

@ -1,14 +1,8 @@
import { ref, watch, getCurrentInstance, type App } from 'vue';
import {
extend,
isObject,
inBrowser,
withInstall,
type ComponentInstance,
} from '../utils';
import { extend, isObject, inBrowser, withInstall } from '../utils';
import { mountComponent, usePopupState } from '../utils/mount-component';
import VanToast from './Toast';
import type { ToastType, ToastOptions } from './types';
import type { ToastType, ToastOptions, ToastWrapperInstance } from './types';
const defaultOptions: ToastOptions = {
icon: '',
@ -32,7 +26,7 @@ const defaultOptions: ToastOptions = {
closeOnClickOverlay: false,
};
let queue: ComponentInstance[] = [];
let queue: ToastWrapperInstance[] = [];
let allowMultiple = false;
let currentOptions = extend({}, defaultOptions);
@ -83,7 +77,7 @@ function createInstance() {
},
});
return instance;
return instance as ToastWrapperInstance;
}
function getInstance() {
@ -97,7 +91,7 @@ function getInstance() {
function Toast(options: string | ToastOptions = {}) {
if (!inBrowser) {
return {} as ComponentInstance;
return {} as ToastWrapperInstance;
}
const toast = getInstance();

View File

@ -1,5 +1,5 @@
import { Toast } from './function-call';
import type { TeleportProps } from 'vue';
import type { ComponentPublicInstance, TeleportProps } from 'vue';
import type { LoadingType } from '../loading';
import type { Numeric } from '../utils';
@ -34,3 +34,14 @@ declare module '@vue/runtime-core' {
$toast: typeof Toast;
}
}
export type ToastWrapperInstance = ComponentPublicInstance<
{ message: Numeric },
{
clear: () => void;
/**
* @private
*/
open: (props: Record<string, any>) => void;
}
>;