refactor: js output
This commit is contained in:
parent
1aa28c2a34
commit
c6704c3a04
96 changed files with 3816 additions and 147 deletions
13
src/file.d.ts
vendored
Normal file
13
src/file.d.ts
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Issue } from "./issue.js";
|
||||
import { Sprint } from "./sprint.js";
|
||||
import { Module, BugzillaTracker } from "./tracker.js";
|
||||
export interface TodoFile {
|
||||
sprints: Sprint[];
|
||||
issues: Issue[];
|
||||
modules?: Module[];
|
||||
bugzilla?: BugzillaTracker;
|
||||
}
|
||||
export declare function parseMime(mimeText: string): Promise<import("mailparser").ParsedMail>;
|
||||
export declare function preprocessTODO(raw: string): string;
|
||||
export declare function parseTodoFile(path?: string): Promise<TodoFile>;
|
||||
export declare function writeTodoFile(todo: TodoFile, path?: string): void;
|
||||
Loading…
Add table
Add a link
Reference in a new issue