9 lines
269 B
TypeScript
9 lines
269 B
TypeScript
/**
|
|
* Copyright 2024 Phenix Real Time Solutions, Inc. Confidential and Proprietary. All Rights Reserved.
|
|
*/
|
|
import {LoggingLevel} from './Logger';
|
|
|
|
export interface IAppender {
|
|
log: (logLevel: LoggingLevel, message: string, category: string, date: Date) => void;
|
|
}
|