Last active
February 12, 2020 15:48
-
-
Save cenkce/91a1c0102a0267e997cbab0738af126d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const shareLinks: { | |
socialMedia: { | |
twitter: "twitter", | |
facebook: "facebook" | |
}, | |
email: "email", | |
anotherWay: "anotherWay" | |
} | |
// or more complex types | |
type complexDataType = { | |
prop1: "any value 1", | |
props2: "any value 2", | |
category1: { | |
nestedCategory1: { | |
... | |
} | |
}, | |
category2: { | |
nestedCategory1: { | |
... | |
} | |
}, | |
category3: { | |
... | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment