Skip to content

Instantly share code, notes, and snippets.

@spoenemann
Created May 24, 2017 08:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spoenemann/ec2c4c88b7341513d96373fc1ab7df9b to your computer and use it in GitHub Desktop.
Save spoenemann/ec2c4c88b7341513d96373fc1ab7df9b to your computer and use it in GitHub Desktop.
Simple class DSL example
class Person {
name: string
bag: Bag
getCash(): number {
bag.wallet.cash
}
}
class Bag {
wallet: Wallet
}
class Wallet {
cash: number
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment