Files
vscode-front-matter/src/constants/GeneralCommands.ts
T
2024-01-19 18:11:53 +01:00

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'
}
};