feat(ide): add OutputFormat type for json, yaml, and markdown

This commit is contained in:
Fatih Kadir Akın
2025-12-26 23:22:56 +03:00
parent 32a74f7d7d
commit 43797e2e36

View File

@@ -0,0 +1 @@
export type OutputFormat = "json" | "yaml" | "markdown";