Skip to content

Commit

Permalink
Remove unneeded parent type
Browse files Browse the repository at this point in the history
  • Loading branch information
hudochenkov committed May 17, 2021
1 parent a5ac723 commit 69c5d81
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions lib/at-rule.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Container, { ContainerProps } from './container.js'
import { ChildNode } from './node.js'

interface AtRuleRaws {
/**
Expand Down Expand Up @@ -72,7 +71,6 @@ export default class AtRule extends Container {
type: 'atrule'
parent: Container | undefined
raws: AtRuleRaws
nodes: ChildNode[]

/**
* The at-rule’s name immediately follows the `@`.
Expand Down
2 changes: 0 additions & 2 deletions lib/root.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import Container, { ContainerProps } from './container.js'
import Document from './document.js'
import { ChildNode } from './node.js'
import { ProcessOptions } from './postcss.js'
import Result from './result.js'

Expand Down Expand Up @@ -38,7 +37,6 @@ export default class Root extends Container {
type: 'root'
parent: Document | undefined
raws: RootRaws
nodes: ChildNode[]

constructor(defaults?: RootProps)

Expand Down
2 changes: 0 additions & 2 deletions lib/rule.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Container, { ContainerProps } from './container.js'
import { ChildNode } from './node.js'

interface RuleRaws {
/**
Expand Down Expand Up @@ -65,7 +64,6 @@ export default class Rule extends Container {
type: 'rule'
parent: Container | undefined
raws: RuleRaws
nodes: ChildNode[]

/**
* The rule’s full selector represented as a string.
Expand Down

0 comments on commit 69c5d81

Please sign in to comment.