You can import classes directly, which allows you to have the usage you want.
// usage
import { Logger } from 'path/logger.ts'
Logger.Log();
And the definition stays the same.
// path/logger.ts
export class Logger {
static Log() {
...
}
}