Moving numbering from IParagraphPropertiesOptions to IParagraphStylePropertiesOptions

This commit is contained in:
Andrey Savin
2021-09-16 13:01:47 +03:00
parent 5018134e35
commit 996594da9b

View File

@ -24,6 +24,12 @@ export interface IParagraphStylePropertiesOptions {
readonly keepNext?: boolean;
readonly keepLines?: boolean;
readonly outlineLevel?: number;
readonly numbering?: {
readonly reference: string;
readonly level: number;
readonly instance?: number;
readonly custom?: boolean;
};
}
export interface IParagraphPropertiesOptions extends IParagraphStylePropertiesOptions {
@ -40,12 +46,6 @@ export interface IParagraphPropertiesOptions extends IParagraphStylePropertiesOp
readonly bullet?: {
readonly level: number;
};
readonly numbering?: {
readonly reference: string;
readonly level: number;
readonly instance?: number;
readonly custom?: boolean;
};
readonly shading?: IShadingAttributesProperties;
readonly widowControl?: boolean;
readonly frame?: IFrameOptions;