From 974ad263c93ef13fed77670d7da412ef31b637c3 Mon Sep 17 00:00:00 2001 From: Ethan Hann Date: Tue, 16 Jul 2024 11:01:44 -0400 Subject: [PATCH] Add "patch" config option to FilePondServerConfigProps.server --- types/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/index.d.ts b/types/index.d.ts index f056f3f5..7eecc977 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -298,6 +298,7 @@ export interface FilePondServerConfigProps { restore?: string | ServerUrl | RestoreServerConfigFunction | null; load?: string | ServerUrl | LoadServerConfigFunction | null; fetch?: string | ServerUrl | FetchServerConfigFunction | null; + patch?: string | ServerUrl | null; remove?: RemoveServerConfigFunction | null; } | null;