v1.4.2-patch.1 - add npm-webpack-demo webpack@5.78, vue@3.4

This commit is contained in:
LINING-PC\lining
2025-11-07 15:10:37 +08:00
parent 8982e6b57b
commit cacaece319
12 changed files with 5798 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
declare module 'jordium-gantt-vue3' {
import { DefineComponent } from 'vue'
export const GanttChart: DefineComponent<any, any, any>
export interface Task {
id: number
name: string
startDate: string
endDate: string
progress: number
predecessor?: number[]
}
export interface Milestone {
id: number
name: string
date: string
type: string
}
}
declare module 'jordium-gantt-vue3/dist/assets/jordium-gantt-vue3.css'