Skip to content

Instantly share code, notes, and snippets.

@IvsonEmidio
Created May 1, 2022 22:39
Show Gist options
  • Save IvsonEmidio/06538de9f654fb6f762f8d3b5549188c to your computer and use it in GitHub Desktop.
Save IvsonEmidio/06538de9f654fb6f762f8d3b5549188c to your computer and use it in GitHub Desktop.
SOLID - OCP - Interface
export default interface ICar {
readonly brand: string;
readonly color: string;
getMarketPrice(): Promise<number>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment