pmcf
Version:
Poor mans configuration management
11 lines (10 loc) • 328 B
text/typescript
export class Root extends Location {
static get typeDefinition(): typeof Root;
constructor(directory: any);
get fullName(): string;
get root(): this;
_load(name: any, type: any): Promise<any>;
load(name: any, options: any): any;
loadAll(): Promise<void>;
}
import { Location } from "./location.mjs";