@vendure/ngx-translate-extract
Version:
Extract strings from projects using ngx-translate
11 lines (10 loc) • 341 B
TypeScript
import { TranslationCollection } from '../utils/translation.collection.js';
export interface CompilerOptions {
indentation?: string;
poSourceLocation?: boolean;
}
export interface CompilerInterface {
extension: string;
compile(collection: TranslationCollection): string;
parse(contents: string): TranslationCollection;
}