mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 08:02:28 +00:00
10 lines
216 B
TypeScript
10 lines
216 B
TypeScript
export const SETUP_SCRIPT_IMPORT_PROVIDERS = [
|
|
'superset',
|
|
'conductor',
|
|
'codex',
|
|
'cmux',
|
|
'package-manager'
|
|
] as const
|
|
|
|
export type SetupScriptImportProvider = (typeof SETUP_SCRIPT_IMPORT_PROVIDERS)[number]
|