// namespace Types.Models.Spt.Logging; // // public class SptLogger // { // export interface SptLogger { // error: (msg: string | Record) => void; // warn: (msg: string | Record) => void; // succ?: (msg: string | Record) => void; // info: (msg: string | Record) => void; // debug: (msg: string | Record) => void; // } // // } // TODO: needs to be reimplemented however we want to do it in this project