From e77051ccc4b47951bfa4fde2be436b1bb2fb113b Mon Sep 17 00:00:00 2001 From: Christoph Cullmann Date: Sun, 28 Apr 2024 17:33:09 +0200 Subject: use https://github.com/nunocoracao/blowfish.git --- .../lib/mermaid/diagrams/timeline/timelineDb.d.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 themes/blowfish/assets/lib/mermaid/diagrams/timeline/timelineDb.d.ts (limited to 'themes/blowfish/assets/lib/mermaid/diagrams/timeline/timelineDb.d.ts') diff --git a/themes/blowfish/assets/lib/mermaid/diagrams/timeline/timelineDb.d.ts b/themes/blowfish/assets/lib/mermaid/diagrams/timeline/timelineDb.d.ts new file mode 100644 index 0000000..aa55f8b --- /dev/null +++ b/themes/blowfish/assets/lib/mermaid/diagrams/timeline/timelineDb.d.ts @@ -0,0 +1,20 @@ +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'; -- cgit v1.2.3