From e9fe44a1c01951d1a269411dfede4c71a08aede0 Mon Sep 17 00:00:00 2001 From: Evan Tay Date: Fri, 12 Jan 2024 10:55:46 +0800 Subject: [PATCH] export RenderOptions from index --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index d983869..ade1e31 100644 --- a/src/index.ts +++ b/src/index.ts @@ -63,3 +63,5 @@ const validateOptions = (options: RenderOptions) => { } return Object.assign({}, DEFAULT_OPTIONS, options); }; + +export { RenderOptions };