| 256 | ) => void; |
| 257 | |
| 258 | export interface FilePondInitialFile { |
| 259 | /** The server file reference. */ |
| 260 | source: string; |
| 261 | options: { |
| 262 | /** Origin of file being added. */ |
| 263 | type: 'input' | 'limbo' | 'local'; |
| 264 | /** Mock file information. */ |
| 265 | file?: { |
| 266 | name?: string; |
| 267 | size?: number; |
| 268 | type?: string; |
| 269 | }; |
| 270 | /** File initial metadata. */ |
| 271 | metadata?: { [key: string]: any }; |
| 272 | }; |
| 273 | } |
| 274 | |
| 275 | export interface FilePondServerConfigProps { |
| 276 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected