index.d.ts 692 B

12345678910111213141516171819202122232425262728293031
  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> =
  18. ComponentElRef<T> | null;
  19. declare type ElRef<T extends HTMLElement = HTMLDivElement> = Nullable<T>;
  20. declare type ForDataType<T> = {
  21. [P in T]?: ForDataType<T[P]>;
  22. };