Created
June 11, 2024 10:53
-
-
Save Caballerog/db80c1a9f47a260986a8b6164190330c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Component } from "./component"; | |
| export class Leaf implements Component { | |
| operation(): void { | |
| console.log("Leaf operation."); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment