UNPKG

@tdb/web

Version:

Common condiguration for serving a web-site and testing web-based UI components.

17 lines (16 loc) 413 B
import { IManifest } from './types'; export declare class Manifest { readonly path: string; private readonly rootDir; private readonly urlPrefix; constructor(args: { rootDir: string; path: string; urlPrefix?: string; }); readonly dir: string; getPaths(): Promise<string[]>; toObject(args?: { loadExtensions?: string[]; }): Promise<IManifest>; }