9 lines
204 B
Swift
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
|
|
}
|