Skip to content

Commit

Permalink
chore: update TypeScript
Browse files Browse the repository at this point in the history
  • Loading branch information
ludofischer committed Mar 8, 2024
1 parent d289a0e commit b758c1d
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"postcss": "^8.4.35",
"postcss-font-magician": "^3.0.0",
"prettier": "^3.2.5",
"typescript": "~5.3.3",
"typescript": "~5.4.2",
"uvu": "^0.5.6"
},
"browserslist": {
Expand Down
4 changes: 2 additions & 2 deletions packages/postcss-merge-longhand/types/lib/decl/margin.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
declare const _exports: {
explode: (rule: import("postcss/lib/rule.js").default) => void;
merge: (rule: import("postcss/lib/rule.js").default) => void;
explode: (rule: import("postcss").Rule) => void;
merge: (rule: import("postcss").Rule) => void;
};
export = _exports;
//# sourceMappingURL=margin.d.ts.map
4 changes: 2 additions & 2 deletions packages/postcss-merge-longhand/types/lib/decl/padding.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
declare const _exports: {
explode: (rule: import("postcss/lib/rule").default) => void;
merge: (rule: import("postcss/lib/rule").default) => void;
explode: (rule: import("postcss").Rule) => void;
merge: (rule: import("postcss").Rule) => void;
};
export = _exports;
//# sourceMappingURL=padding.d.ts.map
2 changes: 1 addition & 1 deletion packages/stylehacks/types/plugin.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ declare class BasePlugin {
nodes: NodeWithInfo[];
targets: Set<string>;
nodeTypes: Set<string>;
result: import("postcss/lib/result").default<import("postcss/lib/document").default | import("postcss/lib/root").default> | undefined;
result: import("postcss").Result<import("postcss").Document | import("postcss").Root> | undefined;
/**
* @param {import('postcss').Node} node
* @param {{identifier: string, hack: string}} metadata
Expand Down
2 changes: 1 addition & 1 deletion packages/stylehacks/types/plugin.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/stylehacks/types/plugins/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
declare const _exports: ({
new (result?: import("postcss/lib/result").default<import("postcss/lib/document").default | import("postcss/lib/root").default> | undefined): important;
new (result?: import("postcss").Result<import("postcss").Document | import("postcss").Root> | undefined): important;
} | {
new (result?: import("postcss/lib/result").default<import("postcss/lib/document").default | import("postcss/lib/root").default> | undefined): trailingSlashComma;
new (result?: import("postcss").Result<import("postcss").Document | import("postcss").Root> | undefined): trailingSlashComma;
})[];
export = _exports;
import important = require("./important");
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit b758c1d

Please sign in to comment.