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