index.d.ts 611 B

1234567891011121314151617181920212223242526
  1. declare interface Fn<T = any, R = T> {
  2. (...arg: T[]): R
  3. }
  4. declare interface PromiseFn<T = any, R = T> {
  5. (...arg: T[]): Promise<R>
  6. }
  7. declare type RefType<T> = T | null
  8. declare type LabelValueOptions = {
  9. label: string
  10. value: any
  11. }[]
  12. declare type EmitType = (event: string, ...args: any[]) => void
  13. declare type TargetContext = '_self' | '_blank'
  14. declare interface ComponentElRef<T extends HTMLElement = HTMLDivElement> {
  15. $el: T
  16. }
  17. declare type ComponentRef<T extends HTMLElement = HTMLDivElement> = ComponentElRef<T> | null
  18. declare type ElRef<T extends HTMLElement = HTMLDivElement> = Nullable<T>