UNPKG

wallee

Version:
23 lines (22 loc) 469 B
declare class LocalizedString { /** * The term's language. */ 'language'?: string; /** * The localized term. */ 'string'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { LocalizedString };