Archived
1
0

refactor: add cookie.ts to lib/vscode

This commit is contained in:
Joe Previte
2021-03-17 16:08:25 -07:00
parent 9f790fd2f3
commit 5cec6208d0
3 changed files with 5 additions and 4 deletions

View File

@ -0,0 +1,3 @@
export enum Cookie {
Key = "key",
}

View File

@ -40,6 +40,7 @@ import { KeybindingWeight } from 'vs/platform/keybinding/common/keybindingsRegis
import { IsWebContext } from 'vs/platform/contextkey/common/contextkeys';
import { ICommandService } from 'vs/platform/commands/common/commands';
import { ILogService } from 'vs/platform/log/common/log';
import { Cookie } from 'vs/server/common/cookie';
export abstract class MenubarControl extends Disposable {