mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-28 14:50:58 +00:00
7 lines
189 B
TypeScript
7 lines
189 B
TypeScript
interface ExtractedSourceMap {
|
|
map: any;
|
|
}
|
|
declare function extractSourcemapFromFile(code: string, filePath: string): ExtractedSourceMap | undefined;
|
|
|
|
export { extractSourcemapFromFile };
|