Last active
September 16, 2019 22:08
-
-
Save john-osullivan/db1e3b72c3736de6003cd179a075ac08 to your computer and use it in GitHub Desktop.
Dev Diaries #2 - Sample index file from the User submodule
This file contains 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
// This line takes all of the exports from that | |
// file and wraps them into a single namespace. | |
// If we didn't do this "* as User" syntax here, | |
// then a consumer would have to do it in order | |
// to get a convenient namespace. | |
import * as User from './user'; | |
// This line directly surfaces all of its non-default | |
// exports from right here, so that users can just | |
// grab one item from there, e.g.: | |
// | |
// import { ChallengeType } from 'dappbot-types/spec/user' | |
// | |
export * from './user'; | |
// This line exports the other file's namespace by default, | |
// so that consumers can grab all of its exports under one | |
// convenient name. | |
// | |
// import User from 'dappbot-types/spec/user'; | |
export default User; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment