export type DebugLocation = DebugLocationImpl | undefined; export declare namespace DebugLocation { function enable(): void; function ofCaller(): DebugLocation; } declare class DebugLocationImpl implements ILocation { readonly fileName: string; readonly line: number; readonly column: number; readonly id: string; static fromStack(stack: string, parentIdx: number): DebugLocationImpl | undefined; constructor(fileName: string, line: number, column: number, id: string); } export interface ILocation { fileName: string; line: number; column: number; id: string; } export {};