File

src/modules/logging/entities/logging.entity.intf.ts

Description

The StarkLogging entity to be kept in the application state

Index

Properties

Properties

applicationId
applicationId: string
Type : string

The id of the application

messages
messages: StarkLogMessage[]
Type : StarkLogMessage[]

The StarkLogMessage objects being logged

uuid
uuid: string
Type : string

The uuid of the entity

import { StarkLogMessage } from "./log-message.entity.intf";

/**
 * The StarkLogging entity to be kept in the application state
 */
export interface StarkLogging {
	/**
	 * The `uuid` of the entity
	 */
	uuid: string;
	/**
	 * The id of the application
	 */
	applicationId: string;
	/**
	 * The {@link StarkLogMessage} objects being logged
	 */
	messages: StarkLogMessage[];
}

results matching ""

    No results matching ""