Spaces:
Running
Running
File size: 443 Bytes
fd8cdf5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import type { DashboardManifest } from '../types/manifest.js';
export interface FileMapping {
/** Maps URL path segments (dirName/fileName) to absolute file paths on disk */
[urlPath: string]: string;
}
export type ResolveResult = {
success: true;
manifest: DashboardManifest;
fileMapping: FileMapping;
} | {
success: false;
error: string;
};
export declare function resolveInput(inputPath: string): ResolveResult;
|