cspell-config-lib
Version:
14 lines • 692 B
TypeScript
import type { CSpellSettings } from '@cspell/cspell-types';
import { ImplCSpellConfigFile } from '../CSpellConfigFile.js';
export declare class CSpellConfigFileInMemory extends ImplCSpellConfigFile {
/** A url representing where it might exist, used to resolve imports. */
readonly url: URL;
readonly settings: CSpellSettings;
constructor(
/** A url representing where it might exist, used to resolve imports. */
url: URL, settings: CSpellSettings);
setSchema(schema: string): this;
get virtual(): boolean;
static from(url: URL, settings: CSpellSettings, _indent?: number): CSpellConfigFileInMemory;
}
//# sourceMappingURL=CSpellConfigFileInMemory.d.ts.map