9 lines
269 B
TypeScript
9 lines
269 B
TypeScript
type ManagedClientForTempDirectoryCleanup = {
|
|
refCount: number;
|
|
client: {
|
|
stop: () => Promise<void>;
|
|
};
|
|
};
|
|
export declare function cleanupTempDirectoryLspClients(clients: Map<string, ManagedClientForTempDirectoryCleanup>): Promise<void>;
|
|
export {};
|