node/test/fixtures/module-hooks/log-user.mts

5 lines
176 B
TypeScript

import { UserAccount, UserType } from './user.ts';
import { log } from 'node:console';
const account: UserAccount = new UserAccount('john', 100, UserType.Admin);
log(account);