Manuel Friedli
8fc3b8e3aa
- ambient declarations seem not to be working, thus the following converters have temporarily been disabled: - punycode - utf8 - quoted-printable
18 lines
415 B
TypeScript
18 lines
415 B
TypeScript
import {Injectable} from "@angular/core";
|
|
|
|
declare var utf8:any;
|
|
declare var quotedPrintable:any;
|
|
declare var punycode:any;
|
|
|
|
@Injectable()
|
|
export class NativeLibraryWrapperService {
|
|
// public utf8:any;
|
|
// public quotedPrintable:any;
|
|
// public punycode:any;
|
|
|
|
constructor() {
|
|
// this.utf8 = utf8;
|
|
// this.quotedPrintable = quotedPrintable;
|
|
// this.punycode = punycode;
|
|
}
|
|
}
|