export interface Loader { load(path: string): Promise; } export interface LoadResult { absolutePath: string; data: string; }