Files
data-lite-coder/Sources/DLCDecoder/Protocols/ValueDecoder.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
}