//#region src/node/log/log-util.d.ts declare function getStackLlocationList(stack: string): string[]; /** * Get the source code location of the caller * https://stackoverflow.com/a/47296370/140927 * * @param level Number of levels to go down the stack trace * @param stripCwd Strip the current working directory, only reasonable for Node.js environment */ declare function getSourceLocation(level?: number, stripCwd?: boolean): string; declare function getStack(): string; declare function getSourceLocationByPrecedingPattern(patterns: string[], stripCwd?: boolean): string; //#endregion export { getStackLlocationList as i, getSourceLocationByPrecedingPattern as n, getStack as r, getSourceLocation as t }; //# sourceMappingURL=log-util-Da_d19f8.d.mts.map