UNPKG

@sussudio/platform

Version:

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

13 lines (11 loc) 685 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { Disposable } from '@sussudio/base/common/lifecycle.mjs'; import { IHeartbeatService } from '../common/terminal.mjs'; export declare class HeartbeatService extends Disposable implements IHeartbeatService { private readonly _onBeat; readonly onBeat: import('@sussudio/base/common/event.mjs').Event<void>; constructor(); }