1 | export function clear(): void;
|
2 | export function setAxisFormat(txt: any): void;
|
3 | export function getAxisFormat(): string;
|
4 | export function setTickInterval(txt: any): void;
|
5 | export function getTickInterval(): any;
|
6 | export function setTodayMarker(txt: any): void;
|
7 | export function getTodayMarker(): string;
|
8 | export function setDateFormat(txt: any): void;
|
9 | export function enableInclusiveEndDates(): void;
|
10 | export function endDatesAreInclusive(): boolean;
|
11 | export function enableTopAxis(): void;
|
12 | export function topAxisEnabled(): boolean;
|
13 | export function setDisplayMode(txt: any): void;
|
14 | export function getDisplayMode(): string;
|
15 | export function getDateFormat(): string;
|
16 | export function setIncludes(txt: any): void;
|
17 | export function getIncludes(): any[];
|
18 | export function setExcludes(txt: any): void;
|
19 | export function getExcludes(): any[];
|
20 | export function getLinks(): {};
|
21 | export function addSection(txt: any): void;
|
22 | export function getSections(): any[];
|
23 | export function getTasks(): any[];
|
24 | export function isInvalidDate(date: any, dateFormat: any, excludes: any, includes: any): any;
|
25 | export function setWeekday(txt: any): void;
|
26 | export function getWeekday(): string;
|
27 | export function addTask(descr: any, data: any): void;
|
28 | export function findTaskById(id: any): any;
|
29 | export function addTaskOrg(descr: any, data: any): void;
|
30 | export function setLink(ids: any, _linkStr: any): void;
|
31 | export function setClass(ids: any, className: any): void;
|
32 | export function setClickEvent(ids: any, functionName: any, functionArgs: any): void;
|
33 | export function bindFunctions(element: any): void;
|
34 | declare namespace _default {
|
35 | export function getConfig(): import("../../config.type.js").GanttDiagramConfig | undefined;
|
36 | export { clear };
|
37 | export { setDateFormat };
|
38 | export { getDateFormat };
|
39 | export { enableInclusiveEndDates };
|
40 | export { endDatesAreInclusive };
|
41 | export { enableTopAxis };
|
42 | export { topAxisEnabled };
|
43 | export { setAxisFormat };
|
44 | export { getAxisFormat };
|
45 | export { setTickInterval };
|
46 | export { getTickInterval };
|
47 | export { setTodayMarker };
|
48 | export { getTodayMarker };
|
49 | export { setAccTitle };
|
50 | export { getAccTitle };
|
51 | export { setDiagramTitle };
|
52 | export { getDiagramTitle };
|
53 | export { setDisplayMode };
|
54 | export { getDisplayMode };
|
55 | export { setAccDescription };
|
56 | export { getAccDescription };
|
57 | export { addSection };
|
58 | export { getSections };
|
59 | export { getTasks };
|
60 | export { addTask };
|
61 | export { findTaskById };
|
62 | export { addTaskOrg };
|
63 | export { setIncludes };
|
64 | export { getIncludes };
|
65 | export { setExcludes };
|
66 | export { getExcludes };
|
67 | export { setClickEvent };
|
68 | export { setLink };
|
69 | export { getLinks };
|
70 | export { bindFunctions };
|
71 | export { parseDuration };
|
72 | export { isInvalidDate };
|
73 | export { setWeekday };
|
74 | export { getWeekday };
|
75 | }
|
76 | export default _default;
|
77 | import { setAccTitle } from '../common/commonDb.js';
|
78 | import { getAccTitle } from '../common/commonDb.js';
|
79 | import { setDiagramTitle } from '../common/commonDb.js';
|
80 | import { getDiagramTitle } from '../common/commonDb.js';
|
81 | import { setAccDescription } from '../common/commonDb.js';
|
82 | import { getAccDescription } from '../common/commonDb.js';
|
83 |
|
84 |
|
85 |
|
86 |
|
87 |
|
88 |
|
89 |
|
90 |
|
91 |
|
92 |
|
93 |
|
94 |
|
95 |
|
96 |
|
97 |
|
98 |
|
99 |
|
100 |
|
101 |
|
102 |
|
103 |
|
104 |
|
105 | declare function parseDuration(str: string): [value: number, unit: dayjs.ManipulateType];
|
106 | import dayjs from 'dayjs';
|