@weiliang79/ubl-builder
Version:
Tool to create xml documents with UBL 2.1 standard
15 lines • 616 B
TypeScript
import { UdtIdentifier, UdtName, UdtCode } from '../types/UnqualifiedDataTypes';
import GenericAggregateComponent from './GenericAggregateComponent';
type AllowedParams = {
/** An identifier for this language */
id: UdtIdentifier | string;
/** The name of this language */
name: UdtName | string;
/** A code signifying the locale in which this language is used */
localeCode: UdtCode | string;
};
declare class Language extends GenericAggregateComponent {
constructor(content: AllowedParams);
}
export { Language, AllowedParams as LanguageParams };
//# sourceMappingURL=Language.d.ts.map