Files
speckle-automate-github-action/src/logging/logger.ts
T
2023-03-21 23:06:59 +00:00

6 lines
140 B
TypeScript

export interface Logger {
error: (message: string | Error) => void
info: (message: string) => void
debug: (message: string) => void
}