function Logger(constructor: Function): void { console.log(`Creating instance of ${constructor.name}`); } @Logger class UserService { constructor(public name: string) {} } new UserService("Ada");