sussudio
Version:
An unofficial VS Code Internal API
19 lines (18 loc) • 999 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 "../../../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;
}