Files
Kmake/test/fixtures/module-hooks/log-user.mts

5 lines
176 B
TypeScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
import { UserAccount, UserType } from './user.ts';
import { log } from 'node:console';
const account: UserAccount = new UserAccount('john', 100, UserType.Admin);
log(account);