@pandacss/types 0.0.0-dev-20230122102407 → 0.0.0-dev-20230122144203
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.
- package/dist/config.d.ts +4 -0
- package/package.json +1 -1
package/dist/config.d.ts
CHANGED
|
@@ -164,6 +164,10 @@ export type Config<
|
|
|
164
164
|
* Used to generate css utility classes for your project.
|
|
165
165
|
*/
|
|
166
166
|
static?: StaticCssOptions
|
|
167
|
+
/**
|
|
168
|
+
* File extension for generated javascript files.
|
|
169
|
+
*/
|
|
170
|
+
outExtension?: 'mjs' | 'js'
|
|
167
171
|
}
|
|
168
172
|
|
|
169
173
|
export type TConfig = Config<TConditions, Dict, Dict>
|