@tdb/web
Version:
Common condiguration for serving a web-site and testing web-based UI components.
16 lines (15 loc) • 363 B
TypeScript
/// <reference types="express" />
export declare type IManifestQuery = {
path: string;
markdown?: boolean;
yaml?: boolean;
json?: boolean;
};
export declare type IResourceQuery = {
parse?: boolean;
};
export declare function init(args: {
rootDir: string;
manifestPath?: string;
resourcePath?: string;
}): import("express").Router;