- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
13 lines
488 B
TypeScript
13 lines
488 B
TypeScript
import { InjectionKey, Ref } from "vue";
|
|
import { MaybeRef } from "@vueuse/core";
|
|
|
|
//#region ../../packages/hooks/use-id/index.d.ts
|
|
type ElIdInjectionContext = {
|
|
prefix: number;
|
|
current: number;
|
|
};
|
|
declare const ID_INJECTION_KEY: InjectionKey<ElIdInjectionContext>;
|
|
declare const useIdInjection: () => ElIdInjectionContext;
|
|
declare const useId: (deterministicId?: MaybeRef<string>) => Ref<string>;
|
|
//#endregion
|
|
export { ElIdInjectionContext, ID_INJECTION_KEY, useId, useIdInjection }; |