Skip to content

Commit 0a11c59

Browse files
committed
chore: fix ts lint errors
1 parent 1d030f6 commit 0a11c59

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/generator/src/engines/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
import { isCssProperty } from '@pandacss/is-valid-prop'
1111
import { compact, mapObject, memo } from '@pandacss/shared'
1212
import { TokenDictionary } from '@pandacss/token-dictionary'
13-
import type { ConfigResultWithHooks } from '@pandacss/types'
13+
import type { ConfigResultWithHooks, TSConfig as _TSConfig } from '@pandacss/types'
1414
import { isBool, isStr } from 'lil-fp'
1515
import postcss from 'postcss'
1616

packages/generator/src/engines/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ConfigResultWithHooks } from '@pandacss/types'
1+
import type { ConfigResultWithHooks, TSConfig as _TSConfig } from '@pandacss/types'
22
import { getBaseEngine } from './base'
33
import { getJsxEngine } from './jsx'
44
import { getPathEngine } from './path'

packages/parser/__tests__/output.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe, test, expect } from 'vitest'
22
import { getFixtureProject } from './fixture'
3-
import { TSConfig, UserConfig } from '@pandacss/types'
3+
import type { TSConfig, UserConfig } from '@pandacss/types'
44

55
const run = (code: string, options?: <Conf extends UserConfig>(conf: Conf) => Conf, tsconfig?: TSConfig) => {
66
const { parse, generator } = getFixtureProject(code, options, tsconfig)

0 commit comments

Comments
 (0)