mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-30 13:54:01 +00:00
8 lines
169 B
TypeScript
8 lines
169 B
TypeScript
export interface Definition {
|
|
name: string
|
|
command: string[]
|
|
environment?: Record<string, string>
|
|
extensions: string[]
|
|
enabled(): Promise<boolean>
|
|
}
|