interface LibraryRegistrationProps {
    adminLevel?: number;
    data: ServicesWithRegistrationsData;
    disabled: boolean;
    error?: FetchErrorData;
    extraFormKey?: string;
    extraFormSection?: any;
    item?: ServiceData;
    libraryRemovalAllowed?: (library: LibraryWithSettingsData) => boolean;
    listDataKey: string;
    protocol: string;
    registerLibrary: (library: any, registration_stage: any) => void;
    responseBody?: string;
    save?: (data: FormData) => void;
    urlBase: string;
}

Hierarchy (View Summary)

Properties

adminLevel?: number
disabled: boolean
error?: FetchErrorData
extraFormKey?: string
extraFormSection?: any
libraryRemovalAllowed?: (library: LibraryWithSettingsData) => boolean
listDataKey: string
protocol: string
registerLibrary: (library: any, registration_stage: any) => void
responseBody?: string
save?: (data: FormData) => void
urlBase: string