From 6527e24b553b58854a8d3c63da6e90ea6b784857 Mon Sep 17 00:00:00 2001 From: Kia Ishii Date: Mon, 30 May 2022 16:06:28 +0900 Subject: [PATCH] docs: update type in docs --- docs/config/app-configs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/config/app-configs.md b/docs/config/app-configs.md index 47adbec8..ee355c88 100644 --- a/docs/config/app-configs.md +++ b/docs/config/app-configs.md @@ -102,7 +102,7 @@ Below shows the the full option you may define within this object. interface MarkdownOptions extends MarkdownIt.Options { // Syntax highlight theme for Shiki. // See: https://github.com/shikijs/shiki/blob/main/docs/themes.md#all-themes - theme?: Shiki.Theme + theme?: Shiki.Theme | { light: Shiki.Theme, dark: Shiki.Theme } // Enable line numbers in code block. lineNumbers?: boolean