Skip to content

Commit deecc42

Browse files
committed
imports cleanup
1 parent 6b19799 commit deecc42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugins/postcss-nesting/src/lib/group-declarations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { ChildNode, Container } from 'postcss';
2-
import {isAtRule, isMixinRule, isRule} from "./is-type-of-rule";
2+
import { isAtRule, isMixinRule, isRule } from "./is-type-of-rule";
33

44
export default function groupDeclarations(node: Container<ChildNode>) {
55
// https://drafts.csswg.org/css-nesting/#mixing

plugins/postcss-nesting/src/lib/is-type-of-rule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type {AtRule, ChildNode, Node, Rule} from 'postcss';
1+
import type { AtRule, Node, Rule } from 'postcss';
22

33
export function isAtRule(node?: Node): node is AtRule {
44
return node && node.type === 'atrule';

0 commit comments

Comments
 (0)