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

9 lines
204 B
Swift

import Foundation
import DataLiteCore
public protocol ValueEncoder: Encoder {
func encodeNil() throws
func encodeDate(_ date: Date) throws
func encode<T: SQLiteBindable>(_ value: T) throws
}