From 996594da9bdf91912faf5b8158e0d55d39aaf080 Mon Sep 17 00:00:00 2001 From: Andrey Savin Date: Thu, 16 Sep 2021 13:01:47 +0300 Subject: [PATCH] Moving numbering from IParagraphPropertiesOptions to IParagraphStylePropertiesOptions --- src/file/paragraph/properties.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/file/paragraph/properties.ts b/src/file/paragraph/properties.ts index bafac51776..6a2537f839 100644 --- a/src/file/paragraph/properties.ts +++ b/src/file/paragraph/properties.ts @@ -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;