Skip to content

Commit 8b804e8

Browse files
authored
chore: import/consistent-type-specifier-style (#125)
1 parent 965874a commit 8b804e8

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

src/__tests__/index.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
import {afterEach, expect, vi, test} from 'vitest'
2-
import type {Mock} from 'vitest'
3-
import remarkEmbedder from '../'
4-
import type {Transformer} from '../'
1+
import {afterEach, expect, vi, test, type Mock} from 'vitest'
2+
import remarkEmbedder, {type Transformer} from '../'
53

64
// this removes the quotes around strings...
75
const unquoteSerializer = {

src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import type {Element, Root} from 'hast'
2-
import type {Plugin} from 'unified'
3-
import type {Link, Paragraph, Text} from 'mdast'
1+
import {type Element, type Root} from 'hast'
2+
import {type Plugin} from 'unified'
3+
import {type Link, type Paragraph, type Text} from 'mdast'
44

55
type GottenHTML = string | null
66
type TransformerConfig<Type = unknown> = Type

0 commit comments

Comments
 (0)