Package-level declarations

Functions

Link copied to clipboard
inline fun <ObjectType : Any, IdType : Any, InputValue : Any> <Error class: unknown class>.configureCRUDRepoRoutes(    originalRepo: CRUDRepo<ObjectType, IdType, InputValue>,     noinline idDeserializer: suspend (String) -> IdType)
inline fun <ObjectType : Any, IdType : Any, InputValue : Any> <Error class: unknown class>.configureCRUDRepoRoutes(    originalRepo: CRUDRepo<ObjectType, IdType, InputValue>,     idsSerializer: KSerializer<IdType>,     serialFormat: BinaryFormat): <Error class: unknown class>
inline fun <ObjectType : Any, IdType : Any, InputValue : Any> <Error class: unknown class>.configureCRUDRepoRoutes(    originalRepo: CRUDRepo<ObjectType, IdType, InputValue>,     idsSerializer: KSerializer<IdType>,     serialFormat: StringFormat): <Error class: unknown class>
Link copied to clipboard
inline fun <ObjectType, IdType> <Error class: unknown class>.configureReadCRUDRepoRoutes(    originalRepo: ReadCRUDRepo<ObjectType, IdType>,     noinline idDeserializer: suspend (String) -> IdType)
inline fun <ObjectType, IdType> <Error class: unknown class>.configureReadCRUDRepoRoutes(    originalRepo: ReadCRUDRepo<ObjectType, IdType>,     idsSerializer: KSerializer<IdType>,     serialFormat: BinaryFormat): <Error class: unknown class>
inline fun <ObjectType, IdType> <Error class: unknown class>.configureReadCRUDRepoRoutes(    originalRepo: ReadCRUDRepo<ObjectType, IdType>,     idsSerializer: KSerializer<IdType>,     serialFormat: StringFormat): <Error class: unknown class>
Link copied to clipboard
inline fun <ObjectType : Any, IdType : Any, InputValue : Any> <Error class: unknown class>.configureWriteCRUDRepoRoutes(    originalRepo: WriteCRUDRepo<ObjectType, IdType, InputValue>)