summaryrefslogtreecommitdiff
path: root/themes/blowfish/assets/lib/mermaid/diagrams/timeline/timelineDb.d.ts
diff options
context:
space:
mode:
authorChristoph Cullmann <christoph@cullmann.io>2024-07-15 22:27:55 +0200
committerChristoph Cullmann <christoph@cullmann.io>2024-07-15 22:27:55 +0200
commit3be5285488090ab70254b3080e33e64e6c702d2c (patch)
tree1e54462f560fd759b5be13d5ecfe1fa5c2c832ed /themes/blowfish/assets/lib/mermaid/diagrams/timeline/timelineDb.d.ts
parent69075c6fb15ae660fc3d78eb2a4dfcde1c5fba1c (diff)
sync theme
Diffstat (limited to 'themes/blowfish/assets/lib/mermaid/diagrams/timeline/timelineDb.d.ts')
-rw-r--r--themes/blowfish/assets/lib/mermaid/diagrams/timeline/timelineDb.d.ts20
1 files changed, 0 insertions, 20 deletions
diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/timeline/timelineDb.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/timeline/timelineDb.d.ts
deleted file mode 100644
index aa55f8b..0000000
--- a/themes/blowfish/assets/lib/mermaid/diagrams/timeline/timelineDb.d.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-export function getCommonDb(): typeof commonDb;
-export function clear(): void;
-export function addSection(txt: any): void;
-export function getSections(): any[];
-export function getTasks(): any[];
-export function addTask(period: any, length: any, event: any): void;
-export function addEvent(event: any): void;
-export function addTaskOrg(descr: any): void;
-declare namespace _default {
- export { clear };
- export { getCommonDb };
- export { addSection };
- export { getSections };
- export { getTasks };
- export { addTask };
- export { addTaskOrg };
- export { addEvent };
-}
-export default _default;
-import * as commonDb from '../common/commonDb.js';