- Fix router import path in main.js - Handle Django REST Framework pagination format in API calls - Add getTemplates function to project API - Restart frontend development server
8 lines
326 B
TypeScript
8 lines
326 B
TypeScript
import { SelectContext, SelectGroupContext } from "./type.js";
|
|
import { InjectionKey } from "vue";
|
|
|
|
//#region ../../packages/components/select/src/token.d.ts
|
|
declare const selectGroupKey: InjectionKey<SelectGroupContext>;
|
|
declare const selectKey: InjectionKey<SelectContext>;
|
|
//#endregion
|
|
export { selectGroupKey, selectKey }; |