Files
data-lite-coder/Sources/DLCDecoder/Protocols/ValueDecoder.swift
2025-10-27 20:08:27 +02:00

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
}