Files
2025-09-07 01:46:48 -04:00

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;
}