Files
data-lite-coder/Sources/DLCDecoder/Protocols/ValueDecoder.swift
2025-10-24 20:16:30 +03:00

9 lines
215 B
Swift

import Foundation
import DataLiteCore
public protocol ValueDecoder: Decoder {
func decodeNil() -> Bool
func decodeDate() throws -> Date
func decode<T: SQLiteRepresentable>(_ type: T.Type) throws -> T
}