8 lines
278 B
TypeScript
8 lines
278 B
TypeScript
import { XmlComponent } from '../../xml-components';
|
|
export type ILanguageOptions = {
|
|
readonly value?: string;
|
|
readonly eastAsia?: string;
|
|
readonly bidirectional?: string;
|
|
};
|
|
export declare const createLanguageComponent: (options: ILanguageOptions) => XmlComponent;
|