- 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
11 lines
350 B
TypeScript
11 lines
350 B
TypeScript
import { Ref, VNode } from "vue";
|
|
|
|
//#region ../../packages/hooks/use-teleport/index.d.ts
|
|
declare const useTeleport: (contentRenderer: () => VNode, appendToBody: Ref<boolean>) => {
|
|
isTeleportVisible: Ref<boolean, boolean>;
|
|
showTeleport: () => void;
|
|
hideTeleport: () => void;
|
|
renderTeleport: () => void;
|
|
};
|
|
//#endregion
|
|
export { useTeleport }; |