mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-06-19 09:35:42 +02:00
22 lines
473 B
TypeScript
22 lines
473 B
TypeScript
export const GeneralCommands = {
|
|
toWebview: {
|
|
setMode: 'setMode',
|
|
git: {
|
|
syncingStart: 'gitSyncingStart',
|
|
syncingEnd: 'gitSyncingEnd',
|
|
branchInfo: 'gitBranchInfo'
|
|
},
|
|
setLocalization: 'setLocalization'
|
|
},
|
|
toVSCode: {
|
|
openLink: 'openLink',
|
|
git: {
|
|
sync: 'gitSync',
|
|
getBranch: 'getBranch',
|
|
selectBranch: 'gitSelectBranch'
|
|
},
|
|
getLocalization: 'getLocalization',
|
|
openOnWebsite: 'openOnWebsite'
|
|
}
|
|
};
|