Spaces:
Running
Running
File size: 204 Bytes
79278ec |
1 2 3 4 5 6 7 8 9 |
import { SetURLSearchParams } from "react-router-dom";
export interface AddDocumentFormProps {
datasetId: number;
isDraft: boolean;
closeModal: () => void;
setSearchParams: SetURLSearchParams;
}
|