0.0.1 • Published 6 years ago

@aeldar/frame-link v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

FrameLinkModule

Usage

Inside AppModule of the app import and confiure FrameLinkModule providing appId:

import { FrameLinkModule } from 'frame-link';

@NgModule({
  // ...
  imports: [
    FrameLinkModule.forRoot({ appId: 'my-app-id' }),
  ],
})

Inside component:

import { FrameLinkService } from 'frame-link';

export class AppComponent {
  constructor(private frameLinkService: FrameLinkService) {}
}