primary-admin/typings/index.d.ts

10 lines
184 B
TypeScript

declare module 'vue3-video-play'
declare module 'css-color-function'
type PromiseFun = (...arg: any[]) => Promise<any>
declare interface Fn<T = any, R = T> {
(...arg: T[]): R
}