import { LogType } from "./LogType";
export interface ILogRecord {
sameTypeId: string;
time: Date;
occurence: number;
type: LogType;
level: number;
module: string;
object: any;
function: string;
caller: string;
message: string;
data: number;
breakpoint: boolean;
}