12345678910111213141516171819202122232425262728 |
- declare module '*.vue' {
- import type { DefineComponent } from 'vue'
- const component: DefineComponent<{}, {}, any>
- export default component
- }
- declare class LeaderLine {
- constructor(startElement: HTMLElement, endElement: HTMLElement, options?: any) {
- }
- position() {}
- _id: number
- static captionLabel: any
- static pathLabel: any
- }
- declare interface Window {
- GLOBAL_CONFIG: {
- yzy: string
- uc: string
- }
- // handleCompleteTask: (gid: number, pid: number, idy: number) => void
- // handleAutoCompleteTask: () => void
- }
|