UNPKG

@sussudio/platform

Version:

Internal APIs for VS Code's service injection the base services.

13 lines (11 loc) 638 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ /** * Apply a zoom level to the window. Also sets it in our in-memory * browser helper so that it can be accessed in non-electron layers. */ export declare function applyZoom(zoomLevel: number): void; export declare function zoomIn(): void; export declare function zoomOut(): void;