@pandacss/types 0.27.2 → 0.27.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/config.d.ts +7 -4
  2. package/package.json +2 -2
package/dist/config.d.ts CHANGED
@@ -364,15 +364,18 @@ export interface ConfigTsOptions {
364
364
  pathMappings: PathMapping[]
365
365
  }
366
366
 
367
- export interface LoadConfigResult {
367
+ export interface LoadTsConfigResult {
368
+ tsconfig?: TSConfig
369
+ tsOptions?: ConfigTsOptions
370
+ tsconfigFile?: string
371
+ }
372
+
373
+ export interface LoadConfigResult extends LoadTsConfigResult {
368
374
  /** Config path */
369
375
  path: string
370
376
  config: UserConfig
371
377
  serialized: string
372
378
  deserialize: () => Config
373
- tsconfig?: TSConfig
374
- tsOptions?: ConfigTsOptions
375
- tsconfigFile?: string
376
379
  dependencies: string[]
377
380
  }
378
381
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pandacss/types",
3
- "version": "0.27.2",
3
+ "version": "0.27.3",
4
4
  "description": "The types for css panda",
5
5
  "main": "dist/index.d.ts",
6
6
  "author": "Segun Adebayo <joseshegs@gmail.com>",
@@ -30,7 +30,7 @@
30
30
  "hookable": "5.5.3",
31
31
  "ncp": "^2.0.0",
32
32
  "pkg-types": "1.0.3",
33
- "@pandacss/extractor": "0.27.2"
33
+ "@pandacss/extractor": "0.27.3"
34
34
  },
35
35
  "scripts": {
36
36
  "dev": "tsx scripts/watch.ts",