版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

10 lines
464 B

  1. import type { InjectionKey, Ref } from 'vue';
  2. export declare const defaultInitialZIndex = 2000;
  3. export declare const zIndexContextKey: InjectionKey<Ref<number | undefined>>;
  4. export declare const useZIndex: (zIndexOverrides?: Ref<number> | undefined) => {
  5. initialZIndex: import("vue").ComputedRef<number>;
  6. currentZIndex: import("vue").ComputedRef<number>;
  7. nextZIndex: () => number;
  8. };
  9. export declare type UseZIndexReturn = ReturnType<typeof useZIndex>;