From 0d9da5d209e7a6552aaf980948e760c09f3f08cf Mon Sep 17 00:00:00 2001 From: valentine195 Date: Tue, 21 Dec 2021 23:11:24 -0500 Subject: [PATCH] fix: statblock is now a valid parameter (same as layout) --- @types/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/@types/index.ts b/@types/index.ts index 3befad94..cdf5d549 100644 --- a/@types/index.ts +++ b/@types/index.ts @@ -60,6 +60,7 @@ export interface Monster { dice?: boolean; render?: boolean; layout?: string; + statblock?: string; } export type Spell = string | { [key: string]: string };