Files
study-bible-project/node_modules/docx/dist/file/styles/latent-styles/exceptions.d.ts
T

21 lines
746 B
TypeScript

import { XmlAttributeComponent, XmlComponent } from '../../xml-components';
export type ILatentStyleExceptionAttributesProperties = {
readonly name?: string;
readonly uiPriority?: string;
readonly qFormat?: string;
readonly semiHidden?: string;
readonly unhideWhenUsed?: string;
};
export declare class LatentStyleExceptionAttributes extends XmlAttributeComponent<ILatentStyleExceptionAttributesProperties> {
protected readonly xmlKeys: {
name: string;
uiPriority: string;
qFormat: string;
semiHidden: string;
unhideWhenUsed: string;
};
}
export declare class LatentStyleException extends XmlComponent {
constructor(attributes: ILatentStyleExceptionAttributesProperties);
}