Files
PrivateProject/陈海波/投标平台/qiyeduan/global.d.ts
2024-09-27 01:28:38 +08:00

3 lines
99 B
TypeScript

type Class<T> = new () => T
type VueComponent<Props> = Class<{ $props: Props | { props: Props } }>