Skip to content

Instantly share code, notes, and snippets.

@ppowstanski
Last active March 7, 2022 17:44
Show Gist options
  • Select an option

  • Save ppowstanski/3280b06d1a8a22a3ec2cea1a96c306b0 to your computer and use it in GitHub Desktop.

Select an option

Save ppowstanski/3280b06d1a8a22a3ec2cea1a96c306b0 to your computer and use it in GitHub Desktop.
import {Injectable} from "@angular/core";
import {Observable, of} from "rxjs";
export abstract class TranslateLoader {
abstract getTranslation(lang: string): Observable<any>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment