1 | export function getCommonDb(): typeof commonDb;
|
2 | export function clear(): void;
|
3 | export function addSection(txt: any): void;
|
4 | export function getSections(): any[];
|
5 | export function getTasks(): any[];
|
6 | export function addTask(period: any, length: any, event: any): void;
|
7 | export function addEvent(event: any): void;
|
8 | export function addTaskOrg(descr: any): void;
|
9 | declare namespace _default {
|
10 | export { clear };
|
11 | export { getCommonDb };
|
12 | export { addSection };
|
13 | export { getSections };
|
14 | export { getTasks };
|
15 | export { addTask };
|
16 | export { addTaskOrg };
|
17 | export { addEvent };
|
18 | }
|
19 | export default _default;
|
20 | import * as commonDb from '../common/commonDb.js';
|