UNPKG

ngx-i18nsupport

Version:

Some tooling to be used with the Angular 2 i18n workflow

15 lines (10 loc) 232 B
/** * Created by martin on 29.06.2017. */ export class AutoTranslateResult { constructor(private _success: boolean, private _details: string) { } public success(): boolean { return this._success; } }