mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-09-09 21:49:28 +00:00
7 lines
192 B
TypeScript
7 lines
192 B
TypeScript
import { defineComponent } from 'vue';
|
|
|
|
export type Component<T extends any = any> =
|
|
| ReturnType<typeof defineComponent>
|
|
| (() => Promise<typeof import('*.vue')>)
|
|
| (() => Promise<T>);
|