版博士V2.0程序
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

10 lignes
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>;