Moving numbering from IParagraphPropertiesOptions to IParagraphStylePropertiesOptions
This commit is contained in:
@ -24,6 +24,12 @@ export interface IParagraphStylePropertiesOptions {
|
|||||||
readonly keepNext?: boolean;
|
readonly keepNext?: boolean;
|
||||||
readonly keepLines?: boolean;
|
readonly keepLines?: boolean;
|
||||||
readonly outlineLevel?: number;
|
readonly outlineLevel?: number;
|
||||||
|
readonly numbering?: {
|
||||||
|
readonly reference: string;
|
||||||
|
readonly level: number;
|
||||||
|
readonly instance?: number;
|
||||||
|
readonly custom?: boolean;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IParagraphPropertiesOptions extends IParagraphStylePropertiesOptions {
|
export interface IParagraphPropertiesOptions extends IParagraphStylePropertiesOptions {
|
||||||
@ -40,12 +46,6 @@ export interface IParagraphPropertiesOptions extends IParagraphStylePropertiesOp
|
|||||||
readonly bullet?: {
|
readonly bullet?: {
|
||||||
readonly level: number;
|
readonly level: number;
|
||||||
};
|
};
|
||||||
readonly numbering?: {
|
|
||||||
readonly reference: string;
|
|
||||||
readonly level: number;
|
|
||||||
readonly instance?: number;
|
|
||||||
readonly custom?: boolean;
|
|
||||||
};
|
|
||||||
readonly shading?: IShadingAttributesProperties;
|
readonly shading?: IShadingAttributesProperties;
|
||||||
readonly widowControl?: boolean;
|
readonly widowControl?: boolean;
|
||||||
readonly frame?: IFrameOptions;
|
readonly frame?: IFrameOptions;
|
||||||
|
Reference in New Issue
Block a user