@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
13 lines (12 loc) • 350 B
TypeScript
import type { ILogEntry } from '../../definition/accessors';
import type { AppMethod } from '../../definition/metadata';
export interface ILoggerStorageEntry {
appId: string;
method: `${AppMethod}`;
entries: Array<ILogEntry>;
startTime: Date;
endTime: Date;
totalTime: number;
instanceId?: string;
_createdAt: Date;
}