@bmat/translation-management
Version:
Manage Front-End translations from multiple sources
14 lines (13 loc) • 368 B
TypeScript
import { XLMBaseEntity } from 'lib/factories/xml-entities/base-entity';
import { ContextType } from 'lib/interfaces/xliff12.interfaces';
export interface ContextTagAttr {
contextType: ContextType;
matchMandatory?: string;
crc?: string;
}
/**
* Context Tag
*/
export declare class ContextTag extends XLMBaseEntity<ContextTagAttr> {
tagName: string;
}