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

9 lines
205 B
Swift

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