data-lite-coder/Sources/DLCEncoder/Protocols/ValueEncoder.swift
Oleksii Zghurskyi 7d1bb97aca Hide package API
2025-10-27 20:08:27 +02:00

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