typedoc
Version:
Create api documentation for TypeScript projects.
13 lines (12 loc) • 547 B
TypeScript
import { type FileId, FileRegistry } from "../models/FileRegistry.js";
import type { Deserializer, JSONOutput } from "#serialization";
import { type NormalizedPath } from "#utils";
export declare class ValidatingFileRegistry extends FileRegistry {
basePath: NormalizedPath;
constructor(basePath?: NormalizedPath);
register(sourcePath: NormalizedPath, relativePath: NormalizedPath): {
target: FileId;
anchor: string | undefined;
} | undefined;
fromObject(de: Deserializer, obj: JSONOutput.FileRegistry): void;
}