We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d28b35 commit 1d817e5Copy full SHA for 1d817e5
README.md
@@ -72,13 +72,14 @@ import type { SomeType } from './custom-types';
72
This will generate a file that starts with:
73
74
```typescript
75
-import type { Decimal } from 'decimal.js';
76
-import { Big } from 'big.js';
77
-import * as moment from 'moment';
78
-import { v4 as uuid } from 'uuid';
79
-import type { SomeType } from './custom-types';
80
-
+import { Big } from "big.js";
+import type { Decimal } from "decimal.js";
81
import type { ColumnType } from "kysely";
+import * as moment from "moment";
+import { v4 as uuid } from "uuid";
+
+import type { SomeType } from "./custom-types";
82
83
// ... rest of generated types
84
```
85
0 commit comments