v1.4.2-patch.1 - add npm-webpack-demo webpack@5.78, vue@3.4
This commit is contained in:
+23
@@ -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'
|
||||
Reference in New Issue
Block a user