blob: 1f64884b71a62eeefc97e5572691968d1a6b5937 (
plain)
1
2
3
4
5
6
7
|
declare module "react-file-pond" {
import * as React from "react";
import type { FilePondOptions } from "filepond";
export class FilePond extends React.Component<FilePondOptions> {}
export function registerPlugin(...plugins: any[]): void;
}
|