Skip to content

Commit 1d817e5

Browse files
committed
fix: prettier formatting
1 parent 2d28b35 commit 1d817e5

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,14 @@ import type { SomeType } from './custom-types';
7272
This will generate a file that starts with:
7373

7474
```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-
75+
import { Big } from "big.js";
76+
import type { Decimal } from "decimal.js";
8177
import type { ColumnType } from "kysely";
78+
import * as moment from "moment";
79+
import { v4 as uuid } from "uuid";
80+
81+
import type { SomeType } from "./custom-types";
82+
8283
// ... rest of generated types
8384
```
8485

0 commit comments

Comments
 (0)