Update dependencies
This commit is contained in:
@@ -6,6 +6,6 @@ public protocol RowDecoder: Decoder {
|
||||
|
||||
func decodeNil(for key: CodingKey) throws -> Bool
|
||||
func decodeDate(for key: CodingKey) throws -> Date
|
||||
func decode<T: SQLiteRawRepresentable>(_ type: T.Type, for key: CodingKey) throws -> T
|
||||
func decode<T: SQLiteRepresentable>(_ type: T.Type, for key: CodingKey) throws -> T
|
||||
func decoder(for key: CodingKey) throws -> any Decoder
|
||||
}
|
||||
|
||||
@@ -4,5 +4,5 @@ import DataLiteCore
|
||||
public protocol ValueDecoder: Decoder {
|
||||
func decodeNil() -> Bool
|
||||
func decodeDate() throws -> Date
|
||||
func decode<T: SQLiteRawRepresentable>(_ type: T.Type) throws -> T
|
||||
func decode<T: SQLiteRepresentable>(_ type: T.Type) throws -> T
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user