mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-07 13:54:42 +02:00
16 lines
461 B
TypeScript
16 lines
461 B
TypeScript
export enum Command {
|
|
loading = 'loading',
|
|
metadata = 'metadata',
|
|
settings = 'settings',
|
|
focusOnTags = 'focusOnTags',
|
|
focusOnCategories = 'focusOnCategories',
|
|
closeSections = 'closeSections',
|
|
folderInfo = 'folderInfo',
|
|
mediaSelectionData = 'mediaSelectionData',
|
|
sendMediaUrl = 'sendMediaUrl',
|
|
updatePlaceholder = 'updatePlaceholder',
|
|
dataFileEntries = 'dataFileEntries',
|
|
updatedSlug = 'updatedSlug',
|
|
serverStarted = 'server-started'
|
|
}
|