Skip to content

Commit 68c05be

Browse files
committed
Get rid of optionals from ThemeSettings interface
1 parent 2f89387 commit 68c05be

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

theme-settings.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ export interface ThemeSettings {
4747
show_subtitle: boolean;
4848
sharing_actions: SocialNetwork[];
4949
share_icons_placement: ShareIconsPlacement;
50-
show_download_pdf?: boolean;
51-
show_download_assets?: boolean;
52-
show_copy_content?: boolean;
53-
show_copy_url?: boolean;
54-
show_read_more?: boolean;
50+
show_download_pdf: boolean;
51+
show_download_assets: boolean;
52+
show_copy_content: boolean;
53+
show_copy_url: boolean;
54+
show_read_more: boolean;
5555
story_card_variant: 'default' | 'boxed';
5656
text_color: string;
5757
}

0 commit comments

Comments
 (0)