9 lines
218 B
Swift
9 lines
218 B
Swift
import Foundation
|
|
import DataLiteCore
|
|
|
|
public protocol ValueDecoder: Decoder {
|
|
func decodeNil() -> Bool
|
|
func decodeDate() throws -> Date
|
|
func decode<T: SQLiteRawRepresentable>(_ type: T.Type) throws -> T
|
|
}
|