feat(docgen): typescript support

This commit is contained in:
iCrawl
2022-06-08 17:26:54 +02:00
parent 1afae909d7
commit 3279b40912
42 changed files with 962 additions and 328 deletions

View File

@@ -1,3 +1,7 @@
export interface Config {
input: string[];
custom: string;
root: string;
output: string;
typescript: boolean;
}