interface PlsIDFormProps {
    currentID?: string;
    error?: FetchErrorData;
    fetchLibrary: (uuid: string) => LibraryData;
    postPlsID?: (data: FormData) => Promise<void>;
    store: Store<State>;
    uuid: string;
}

Hierarchy (View Summary)

Properties

currentID?: string
error?: FetchErrorData
fetchLibrary: (uuid: string) => LibraryData
postPlsID?: (data: FormData) => Promise<void>
store: Store<State>
uuid: string