@ctodev/cclibrary-typings
Version:
Library typings for use with CLARC INFINITY
17 lines (16 loc) • 463 B
TypeScript
import { TccClarcDate, TccMessageType as _TccMessageType } from "./shared.model";
export declare namespace TccET_Log {
type MessageType = _TccMessageType;
const MessageType: typeof _TccMessageType;
interface Log {
Id: string;
Date: TccClarcDate;
Number: number;
MsgType: MessageType;
Thread?: string;
MsgText: string;
InstanceId: string;
MsgId: string;
ThreadId: number;
}
}