@ngx-i18nsupport/ngx-i18nsupport-lib
Version:
A Typescript library to work with Angular generated i18n files (xliff, xmb)
12 lines (11 loc) • 335 B
TypeScript
/**
* Interface for notes.
* Notes are remarks made by a translator.
* They are associated to trans-units.
* Angulars uses notes to store description and meaning.
* These are handled separately by this library and are not contained in this strcuture.
*/
export interface INote {
from?: string;
text: string;
}