From b2ae5b9aa26bb2579c9abe1bd03e1fec3dcb45d3 Mon Sep 17 00:00:00 2001 From: Zach Posten Date: Mon, 31 Dec 2018 11:36:02 -0600 Subject: [PATCH] fix: Add missing metadata file prop --- types/react-filepond/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/react-filepond/index.d.ts b/types/react-filepond/index.d.ts index 057cade36b..e34cbe23e1 100644 --- a/types/react-filepond/index.d.ts +++ b/types/react-filepond/index.d.ts @@ -17,6 +17,7 @@ export interface FilePondFileProps { size?: number; type?: string; origin?: FilePondOrigin; + metadata?: {[key: string]: any}; } export class FilePondFile extends React.Component { }