tsConversion: DetectType

This commit is contained in:
Sidharth Vinod
2022-08-21 00:38:26 +05:30
parent 88e17bf1b4
commit 95dbbb350b
17 changed files with 152 additions and 133 deletions

7
src/types.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
interface ConfigType {
class?: { defaultRenderer: string };
state?: { defaultRenderer: string };
flowchart?: { defaultRenderer: string };
}
type DiagramDetector = (text: string) => boolean;