UNPKG

@studyportals/sp-hs-misc

Version:

Miscellaneous code used in HouseStark's projects

8 lines (7 loc) 273 B
interface ILogger { exception(error: Error, context?: any): Promise<void>; error(message: string, context?: any): Promise<void>; warn(message: string, context?: any): Promise<void>; info(message: string, context?: any): Promise<void>; } export { ILogger };