20 lines
419 B
Plaintext
20 lines
419 B
Plaintext
import { blob } from "./blob.js";
|
|
import { customType } from "./custom.js";
|
|
import { integer } from "./integer.js";
|
|
import { numeric } from "./numeric.js";
|
|
import { real } from "./real.js";
|
|
import { text } from "./text.js";
|
|
function getSQLiteColumnBuilders() {
|
|
return {
|
|
blob,
|
|
customType,
|
|
integer,
|
|
numeric,
|
|
real,
|
|
text
|
|
};
|
|
}
|
|
export {
|
|
getSQLiteColumnBuilders
|
|
};
|
|
//# sourceMappingURL=all.js.map |