import type LogType from './LogType'; /** * @internal */ interface ILogEntry { /** * Optionally log if the event indicates an intentional action or not */ isIntentional?: boolean; /** * The name of the module associated with this entry */ moduleName: string; /** * The feature associated with this entry */ logFeature: string; /** * The log type * todo: dkholo:task#356773 perform a cleanup after data format validation confirmation */ logType: LogType; /** * The optional property bag */ logProperties?: Record; } export default ILogEntry; //# sourceMappingURL=ILogEntry.d.ts.map