svelte-craftcms-headless-formie
Version:
Svelte Package for using Craft CMS with the Formie Plugin in headless configuration
10 lines (9 loc) • 328 B
TypeScript
import type { FormStore } from '../../store.svelte.js';
import type { FieldProps } from '../../types/FieldTypes.js';
type Props = {
item: FieldProps;
formStore: FormStore;
};
declare const FileUpload: import("svelte").Component<Props, {}, "">;
type FileUpload = ReturnType<typeof FileUpload>;
export default FileUpload;