import type { Person as _Person } from "./types/test.d.ts"
export { type Person } from "./types/test.d.ts"
export { Province } from "./types/province.enum.ts"
export class Lindo {
private constructor() {}
static say(text: string) {
console.log(`Lindo says: "${text}"`);
}
static addPerson(person: _Person) {
console.log(JSON.stringify(person, null, 2));
}
}
console.log('Hello, Lindo!');