9 lines
261 B
TypeScript
9 lines
261 B
TypeScript
|
export const LIVE_SHARE_BASE_URL = 'insiders.liveshare.vsengsaas.visualstudio.com';
|
||
|
export const VSLS_EXTENSION_ID = 'ms-vsliveshare.vsliveshare';
|
||
|
|
||
|
export const LIVE_SHARE_COMMANDS = {
|
||
|
START: 'liveshare.start',
|
||
|
END: 'liveshare.end',
|
||
|
JOIN: 'liveshare.join'
|
||
|
}
|