src/stylus.service.ts
Service to provide MyScript cloud service credentials
constructor(applicationKey: string, hmacKey: string, host: string)
|
Defined in src/stylus.service.ts:10
|
import { Injectable } from '@angular/core';
/**
* Service to provide MyScript cloud service credentials
*
* @export
* @class StylusService
*/
@Injectable()
export class StylusService {
constructor(
readonly applicationKey: string,
readonly hmacKey: string,
readonly host?: string
) {}
}