@sussudio/platform
Version:
Internal APIs for VS Code's service injection the base services.
20 lines (18 loc) • 977 B
text/typescript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { URI } from '@sussudio/base/common/uri.mjs';
import { IFileService } from '../../files/common/files.mjs';
import { ILogService } from '../../log/common/log.mjs';
import { AbstractPolicyService, IPolicyService } from './policy.mjs';
export declare class FilePolicyService extends AbstractPolicyService implements IPolicyService {
private readonly file;
private readonly fileService;
private readonly logService;
private readonly throttledDelayer;
constructor(file: URI, fileService: IFileService, logService: ILogService);
protected _updatePolicyDefinitions(): Promise<void>;
private read;
private refresh;
}