15 lines
No EOL
311 B
TypeScript
15 lines
No EOL
311 B
TypeScript
import {Injectable} from "@angular/core";
|
|
|
|
declare var utf8:any;
|
|
declare var quotedPrintable:any;
|
|
|
|
@Injectable()
|
|
export class NativeLibraryWrapperService {
|
|
public utf8:any;
|
|
public quotedPrintable:any;
|
|
|
|
constructor() {
|
|
this.utf8 = utf8;
|
|
this.quotedPrintable = quotedPrintable;
|
|
}
|
|
} |