data-lite-coder/Sources/DLCDecoder/Protocols/ValueDecoder.swift
2025-08-05 20:09:18 +03:00

8 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
}