UNPKG

902 BJavaScriptView Raw
1//
2// BlockV AG. Copyright (c) 2018, all rights reserved.
3//
4// Licensed under the BlockV SDK License (the "License"); you may not use this file or
5// the BlockV SDK except in compliance with the License accompanying it. Unless
6// required by applicable law or agreed to in writing, the BlockV SDK distributed under
7// the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
8// ANY KIND, either express or implied. See the License for the specific language
9// governing permissions and limitations under the License.
10//
11
12// This is the entry point when importing this library into a web app.
13
14export { default } from './client/Blockv'
15export { default as Discover } from './client/Discover'
16
17// Attach SDK version information to the window
18if (typeof window != 'undefined') window.BlockvSDKInfo = {
19 version: require('../package.json').version
20}
\No newline at end of file