@gibraltarsoftware/loupe-typescript
Version:
Loupe Agent for Web clients
18 lines (17 loc) • 782 B
TypeScript
import { LogMessageSeverity } from './LogMessageSeverity';
import { MethodSourceInfo } from './MethodSourceInfo';
export declare class LocalStorageMessage {
severity: LogMessageSeverity;
category: string;
caption: string;
description: string;
parameters: any[] | null;
exception: any | null;
details: string | null;
methodSourceInfo: MethodSourceInfo | null;
timestamp: any;
sequence: number;
agentSessionId: string;
sessionId: string;
constructor(severity: LogMessageSeverity, category: string, caption: string, description: string, parameters: any[] | null, exception: any | null, details: string | null, methodSourceInfo: MethodSourceInfo | null, timestamp: any, sequence: number, agentSessionId: string, sessionId: string);
}