regressify
Version:
Visual regression tests support
15 lines (14 loc) • 449 B
TypeScript
type JsonSchema = {
fileMatch: string[];
url: string;
};
type YamlSchema = Record<string, string>;
type Settings = {
'json.schemas'?: JsonSchema[];
'yaml.schemas'?: YamlSchema;
'files.exclude'?: Record<string, boolean>;
'yaml.schemaStore.enable'?: boolean;
};
export type { Settings };
export declare function addAutoSuggestion(): Promise<void>;
export declare function mergeRegressifySettings(settings: Settings): Settings;