- 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
9 lines
314 B
TypeScript
9 lines
314 B
TypeScript
import { SelectInstance } from "../../select/src/select.js";
|
|
import { TreeInstance } from "../../tree/src/instance.js";
|
|
//#region ../../packages/components/tree-select/src/instance.d.ts
|
|
type TreeSelectInstance = {
|
|
treeRef: TreeInstance;
|
|
selectRef: SelectInstance;
|
|
};
|
|
//#endregion
|
|
export { TreeSelectInstance }; |