first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import { LiteralUnion } from 'type-fest';
export interface StackFrame {
file: string | null;
methodName: LiteralUnion<'<unknown>', string>;
arguments: string[];
lineNumber: number | null;
column: number | null;
}
/**
* This parser parses a stack trace from any browser or Node.js and returns an array of hashes representing a line.
*
* @param stackString - The stack to parse, usually from `error.stack` property.
* @returns The parsed stack frames.
*/
export function parse(stackString: string): StackFrame[];