-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
Karen edited this page Jan 17, 2018
·
2 revisions
Unpkg.com provides NPM-based CDN links. The above link will always point to the latest release on NPM.
npm install basemodelts --save
or
npm i basemodelts -S
If using ES5 or commonjs, BaseModal should be imported as follows:
var BaseModal = require('basemodalts');
ES6+/ES2015+:
import BaseModal from 'basemodalts';
TypeScript supports types only with default imports:
import BaseModal from 'basemodalts';
Directly in your html (global variable is BaseModal
):
<script src="https://unpkg.com/basemodelts"></script>