mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-06-20 01:55:44 +02:00
16 lines
366 B
TypeScript
16 lines
366 B
TypeScript
export const GeneralCommands = {
|
|
toWebview: {
|
|
setMode: 'setMode',
|
|
gitSyncingStart: 'gitSyncingStart',
|
|
gitSyncingEnd: 'gitSyncingEnd',
|
|
setLocalization: 'setLocalization'
|
|
},
|
|
toVSCode: {
|
|
openLink: 'openLink',
|
|
gitSync: 'gitSync',
|
|
gitIsRepo: 'gitIsRepo',
|
|
getLocalization: 'getLocalization',
|
|
openOnWebsite: 'openOnWebsite'
|
|
}
|
|
};
|