| 1234567891011121314151617181920 |
- 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
|