Skip to content

Commit

Permalink
chore: regenerate types
Browse files Browse the repository at this point in the history
  • Loading branch information
ludofischer committed Dec 11, 2023
1 parent 1c90b93 commit b007a7c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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 | undefined;
result: import("postcss/lib/result").default<import("postcss/lib/document").default | import("postcss/lib/root").default> | undefined;
/**
* @param {import('postcss').Node} node
* @param {{identifier: string, hack: string}} metadata
Expand Down
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 | undefined): important;
new (result?: import("postcss/lib/result").default<import("postcss/lib/document").default | import("postcss/lib/root").default> | undefined): important;
} | {
new (result?: import("postcss/lib/result").default | undefined): trailingSlashComma;
new (result?: import("postcss/lib/result").default<import("postcss/lib/document").default | import("postcss/lib/root").default> | undefined): trailingSlashComma;
})[];
export = _exports;
import important = require("./important");
Expand Down

0 comments on commit b007a7c

Please sign in to comment.