css-engine-test-pb 0.1.7 → 0.1.8

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/types.d.ts +2 -1
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -208,7 +208,8 @@ export interface CSSCombinators {
208
208
  '& ~ *'?: CSSProperties;
209
209
  [key: `& ${string}`]: CSSProperties | undefined;
210
210
  }
211
- export type StyleRule = CSSProperties & CSSPseudos & CSSMediaQueries & CSSCombinators;
211
+ export interface StyleRule extends CSSProperties, CSSPseudos, CSSMediaQueries, CSSCombinators {
212
+ }
212
213
  export type StyleDefinition = StyleRule | (() => StyleRule);
213
214
  export declare enum StyleBucket {
214
215
  RESET = "d",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "css-engine-test-pb",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",