sutom/ts/main.ts

9 lines
199 B
TypeScript
Raw Normal View History

2022-01-10 19:34:58 +01:00
import Gestionnaire from "./gestionnaire";
export default class Main {
public constructor() {
console.log("🟥🟦🟦🟡🟡🟡🟦🟦");
let gestionnaire = new Gestionnaire();
}
}