mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 16:02:32 +00:00
11 lines
215 B
TypeScript
11 lines
215 B
TypeScript
export const WORKSPACE_SOURCE_VALUES = [
|
|
'command_palette',
|
|
'sidebar',
|
|
'shortcut',
|
|
'drag_drop',
|
|
'onboarding',
|
|
'unknown'
|
|
] as const
|
|
|
|
export type WorkspaceSource = (typeof WORKSPACE_SOURCE_VALUES)[number]
|