Skip to content

Commit

Permalink
Add some missing exports to index
Browse files Browse the repository at this point in the history
  • Loading branch information
cjam committed May 17, 2020
1 parent d1a1f5f commit 0a04886
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/globals.html
Original file line number Diff line number Diff line change
Expand Up @@ -2906,7 +2906,7 @@ <h3><span class="tsd-flag ts-flagConst">Const</span> auth</h3>
<div class="tsd-signature tsd-kind-icon">auth<span class="tsd-signature-symbol">:</span> <a href="interfaces/spotifyauth.html" class="tsd-signature-type">SpotifyAuth</a><span class="tsd-signature-symbol"> =&nbsp;_auth</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/cjam/react-native-spotify-remote/blob/master/src/index.ts#L25">index.ts:25</a></li>
<li>Defined in <a href="https://github.com/cjam/react-native-spotify-remote/blob/master/src/index.ts#L28">index.ts:28</a></li>
</ul>
</aside>
<div class="tsd-comment tsd-typography">
Expand All @@ -2922,7 +2922,7 @@ <h3><span class="tsd-flag ts-flagConst">Const</span> remote</h3>
<div class="tsd-signature tsd-kind-icon">remote<span class="tsd-signature-symbol">:</span> <a href="interfaces/spotifyremoteapi.html" class="tsd-signature-type">SpotifyRemoteApi</a><span class="tsd-signature-symbol"> =&nbsp;_remote</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/cjam/react-native-spotify-remote/blob/master/src/index.ts#L33">index.ts:33</a></li>
<li>Defined in <a href="https://github.com/cjam/react-native-spotify-remote/blob/master/src/index.ts#L36">index.ts:36</a></li>
</ul>
</aside>
<div class="tsd-comment tsd-typography">
Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2907,7 +2907,7 @@ <h3><span class="tsd-flag ts-flagConst">Const</span> auth</h3>
<div class="tsd-signature tsd-kind-icon">auth<span class="tsd-signature-symbol">:</span> <a href="interfaces/spotifyauth.html" class="tsd-signature-type">SpotifyAuth</a><span class="tsd-signature-symbol"> =&nbsp;_auth</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/cjam/react-native-spotify-remote/blob/master/src/index.ts#L25">index.ts:25</a></li>
<li>Defined in <a href="https://github.com/cjam/react-native-spotify-remote/blob/master/src/index.ts#L28">index.ts:28</a></li>
</ul>
</aside>
<div class="tsd-comment tsd-typography">
Expand All @@ -2923,7 +2923,7 @@ <h3><span class="tsd-flag ts-flagConst">Const</span> remote</h3>
<div class="tsd-signature tsd-kind-icon">remote<span class="tsd-signature-symbol">:</span> <a href="interfaces/spotifyremoteapi.html" class="tsd-signature-type">SpotifyRemoteApi</a><span class="tsd-signature-symbol"> =&nbsp;_remote</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/cjam/react-native-spotify-remote/blob/master/src/index.ts#L33">index.ts:33</a></li>
<li>Defined in <a href="https://github.com/cjam/react-native-spotify-remote/blob/master/src/index.ts#L36">index.ts:36</a></li>
</ul>
</aside>
<div class="tsd-comment tsd-typography">
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"bugs": {
"url": "https://github.com/cjam/react-native-spotify-remote/issues"
},
"version": "0.3.0",
"version": "0.3.1",
"description": "React Native wrapper around the Spotify Remote SDK",
"author": {
"name": "Colter McQuay"
Expand Down Expand Up @@ -35,7 +35,7 @@
"prepack": "yarn submodules && yarn cleanup:ios",
"postpack": "yarn submodules",
"cleanup:ios": "pushd ios/external/SpotifySDK/SpotifyiOS.framework; rm SpotifyiOS Headers; mv Versions/Current/* .; popd",
"submodules": "rm -rf ios/external/* && git submodule update --init --recursive",
"submodules": "rm -rf ios/external/* && rm -rf android/external/* && git submodule update --init --recursive",
"example": "concurrently -n \"server,packager\" -c \"yellow,cyan\" \"cd example-server && yarn start\" \"cd example && yarn start\"",
"xcode": "open example/ios/example.xcworkspace"
},
Expand Down
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ export { default as Album } from './Album';
export { default as ContentType } from './ContentType';
export { default as ContentItem } from './ContentItem';
export { default as CrossfadeState } from './CrossfadeState';
export {default as SpotifySession} from'./SpotifySession';
export {default as GetChildrenItemsOptions} from './GetChildrenItemsOptions';
export {default as PlaybackOptions} from './PlaybackOptions';
export { SpotifyAuth } from './SpotifyAuth';
export { SpotifyRemoteApi } from './SpotifyRemote';

Expand Down

0 comments on commit 0a04886

Please sign in to comment.