mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 19:44:25 +01:00
grid - move EditorPosition to exthost
This commit is contained in:
11
src/vs/workbench/api/shared/editor.ts
Normal file
11
src/vs/workbench/api/shared/editor.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
'use strict';
|
||||
|
||||
// TODO@api this was previously a hardcoded list of editor positions (ONE, TWO, THREE)
|
||||
// that with the introduction of grid editor feature is now unbounded. This should be
|
||||
// revisited when the grid functionality is exposed to extensions
|
||||
export type EditorPosition = number;
|
||||
Reference in New Issue
Block a user