Files
Kmake/test/fixtures/module-hooks/log-user.mts
2026-05-26 23:36:42 -07:00

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);