Skip to content

Instantly share code, notes, and snippets.

@jsoneaday
Created February 8, 2020 20:42
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 jsoneaday/cb61461f0fe03235bdfe3309dcdd1fff to your computer and use it in GitHub Desktop.
Save jsoneaday/cb61461f0fe03235bdfe3309dcdd1fff to your computer and use it in GitHub Desktop.
interface MyData {
name: string;
age: number;
}
const sourceData = {
name: "jon",
age: 25,
country: "United States",
sex: "male",
occupation: "Programmer"
}
const receivedData: MyData = sourceData;
console.log(receivedData);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment