-
-
Save dimitris-papadimitriou-chr/ce556d2cdb190478f757f9019a21249d 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
export type Product = () => number; | |
export var ProductA: (price: number) => Product = (price: number) => () => price; | |
export var Packaging: (product: Product) => Product = (product: Product) => () => product() + 0.5; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment