Formatters as plugins (#487)

This commit is contained in:
Polo123456789
2025-06-29 19:13:32 -06:00
committed by GitHub
parent dd22cb2bb0
commit 7df81f7b3e
5 changed files with 122 additions and 99 deletions

View File

@@ -0,0 +1,7 @@
export interface Definition {
name: string
command: string[]
environment?: Record<string, string>
extensions: string[]
enabled(): Promise<boolean>
}