converter/app/nativelibrarywrapper.service.ts

19 lines
397 B
TypeScript
Raw Normal View History

import {Injectable} from "@angular/core";
declare var utf8:any;
declare var quotedPrintable:any;
2016-09-27 23:50:52 +02:00
declare var punycode:any;
@Injectable()
export class NativeLibraryWrapperService {
public utf8:any;
public quotedPrintable:any;
2016-09-27 23:50:52 +02:00
public punycode:any;
constructor() {
this.utf8 = utf8;
this.quotedPrintable = quotedPrintable;
2016-09-27 23:50:52 +02:00
this.punycode = punycode;
}
2016-09-27 23:50:52 +02:00
}