Update dependencies

This commit is contained in:
Oleksii Zghurskyi 2025-10-24 20:16:30 +03:00
commit 9c6a81437c
33 changed files with 122 additions and 122 deletions

View file

@ -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
}