UNPKG

@microsoft/compose-language-service

Version:
11 lines (10 loc) 603 B
/*!-------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See LICENSE in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { DocumentUri } from 'vscode-languageserver'; export interface DebounceId { uri: DocumentUri; callId: string; } export declare function debounce(delay: number, id: DebounceId, callback: () => Promise<void> | void, thisArg?: unknown): void;