/** * Walk the current V8 stack and return the absolute path of the first frame that is NOT inside * one of `skipMarkers`. Called from a decorator, that frame is the decorated class's own source * file. Works for CJS ( `at ... (C:\foo\bar.js:12:3)` ) and ESM ( `at ... (file:///C:/foo/bar.js:12:3)` ). * * Lifted from `@spinajs/http`'s `captureControllerSourceFile` - the two packages cannot share it * without one depending on the other, and http sits above orm in the graph. */ export declare function captureSourceFile(skipMarkers: string[]): string | undefined; //# sourceMappingURL=source-file.d.ts.map