declare interface Fn { (...arg: T[]): R } declare interface PromiseFn { (...arg: T[]): Promise } declare type RefType = T | null // 就是数组里的 value 是这个对象类型 declare type LabelValueOptions = { label: string value: any disabled: boolean [key: string]: string | number | boolean }[] declare type EmitType = (event: string, ...args: any[]) => void declare type TargetContext = '_self' | '_blank' declare interface ComponentElRef { $el: T } declare type ComponentRef = ComponentElRef | null declare type ElRef = Nullable