2025-06-29 21:13:32 -04:00

8 lines
169 B
TypeScript

export interface Definition {
name: string
command: string[]
environment?: Record<string, string>
extensions: string[]
enabled(): Promise<boolean>
}