Skip to content

Instantly share code, notes, and snippets.

@hw0k
Last active October 4, 2020 09:47
Show Gist options
  • Save hw0k/57356804f08e722b3a91be7fe55200de to your computer and use it in GitHub Desktop.
Save hw0k/57356804f08e722b3a91be7fe55200de to your computer and use it in GitHub Desktop.
TvI 1
interface Human {
name: string;
age: number;
}
const henry: Human = {
name: '남현욱',
age: 20,
};
//
type Human = {
name: string;
age: number;
};
const henry: Human = {
name: '남현욱',
age: 20,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment