UNPKG

1.09 kBJavaScriptView 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 file is used as the entry point when compiling a minified build to be imported via a <script> tag.
13// It exposes all classes as global objects.
14
15import Blockv from '../src/client/Blockv'
16import Discover from '../src/client/Discover'
17import VatomView from './VatomView'
18import FaceSelection from './FaceSelection'
19import BaseFace from './faces/BaseFace'
20
21window.Blockv = Blockv
22window.Discover = Discover
23window.VatomView = VatomView
24window.FaceSelection = FaceSelection
25window.BaseFace = BaseFace