From 751ad9d3043b84fb84ba31b6cd431342c72c1634 Mon Sep 17 00:00:00 2001 From: Dolan Miu Date: Thu, 23 Mar 2023 22:59:34 +0000 Subject: [PATCH] Remove unused type keys --- src/file/styles/style/character-style.ts | 1 - src/file/styles/style/paragraph-style.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/file/styles/style/character-style.ts b/src/file/styles/style/character-style.ts index 80857b90d9..f2743e2c03 100644 --- a/src/file/styles/style/character-style.ts +++ b/src/file/styles/style/character-style.ts @@ -8,7 +8,6 @@ export interface IBaseCharacterStyleOptions extends IStyleOptions { export interface ICharacterStyleOptions extends IBaseCharacterStyleOptions { readonly id: string; - readonly name?: string; } export class StyleForCharacter extends Style { diff --git a/src/file/styles/style/paragraph-style.ts b/src/file/styles/style/paragraph-style.ts index 156f437d2b..84b9dd909e 100644 --- a/src/file/styles/style/paragraph-style.ts +++ b/src/file/styles/style/paragraph-style.ts @@ -9,7 +9,6 @@ export interface IBaseParagraphStyleOptions extends IStyleOptions { export interface IParagraphStyleOptions extends IBaseParagraphStyleOptions { readonly id: string; - readonly name?: string; } export class StyleForParagraph extends Style {