Package Exports
- angular2-livechat
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (angular2-livechat) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
angular2-livechat
Angular2 component to integrate LiveChat with your single-page app
Install
npm install --save angular2-livechat
Usage
import {LiveChat} from 'angular2-livechat';
@Component({
selector: 'app',
template: `
<livechat
[license]="007"
[entityDetails]="{ name: 'John' }"
></livechat>
`,
directives: [LiveChat]
})
class App {}