Skip to content

Instantly share code, notes, and snippets.

@intojs
Created December 5, 2017 22:01
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 intojs/184fa4ea1d6b1b9eb29b0d599222844c to your computer and use it in GitHub Desktop.
Save intojs/184fa4ea1d6b1b9eb29b0d599222844c to your computer and use it in GitHub Desktop.
Mocking in Typescript - Price.ts
export interface Price {
value: number;
currency: string;
vat: number;
stringRepresentation: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment