From ef2abf1decc4a0ccc982680ef3a6db873679b517 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=81=E9=94=90?= Date: Thu, 9 Dec 2021 15:33:55 +0800 Subject: [PATCH] chore: types --- types/index.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/types/index.d.ts b/types/index.d.ts index 9ba21ce..81c3aa4 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -4,9 +4,9 @@ export default VuePdfViewer; export interface VuePdfViewerProps { source: object | string; - controls: string[]; - loadingText: string; - renderingText: string; + controls?: string[]; + loadingText?: string; + renderingText?: string; } export interface VuePdfViewerData { isLoading: boolean,