Spaces:
Running
Running
| 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; | |