import { ICommonsUniquelyIdentified } from 'tscommons-models'; import { ELogType } from '../enums/elog-type'; import { IIsDeleted } from './iis-deleted'; export interface ILog extends ICommonsUniquelyIdentified, IIsDeleted { utcTimestamp: number; logged: Date; types: ELogType[]; entry: string; chains: string[]; event: string; author: string; data: string; tags: string[]; } export declare function isILog(test: unknown): test is ILog;