namespace Core.Models.Spt.Logging; public class SptLogger { public object Error { get; set; } // error: (msg: string | Record) => void; public object Warn { get; set; } // warn: (msg: string | Record) => void; public object Succ { get; set; } // succ?: (msg: string | Record) => void; public object Info { get; set; } // info: (msg: string | Record) => void; public object Debug { get; set; } // debug: (msg: string | Record) => void; } // TODO: needs to be reimplemented however we want to do it in this project