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