Skip to content

Instantly share code, notes, and snippets.

@imkrish
Created April 20, 2019 11:24
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 imkrish/d1ac8bbb4a58f766679fbf2100b6977c to your computer and use it in GitHub Desktop.
Save imkrish/d1ac8bbb4a58f766679fbf2100b6977c to your computer and use it in GitHub Desktop.
interface User {
id: number;
name: string;
}
const user: User = {
id: 1,
name: "Keerati"
};
user.id++;
user.name = "George";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment