@vendure/ngx-translate-extract
Version:
Extract strings from projects using ngx-translate
7 lines (6 loc) • 318 B
TypeScript
import { ParserInterface } from './parser.interface.js';
import { TranslationCollection } from '../utils/translation.collection.js';
export declare class MarkerParser implements ParserInterface {
extract(source: string, filePath: string): TranslationCollection | null;
private getMarkerImportNameFromSource;
}