Skip to content

Commit

Permalink
Merge pull request #1692 from 43081j/extend-raws
Browse files Browse the repository at this point in the history
fix: allow all `raws` to be extended
  • Loading branch information
ai committed Dec 12, 2021
2 parents 81292d1 + fdefd27 commit d56b0ea
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/at-rule.d.ts
@@ -1,6 +1,6 @@
import Container, { ContainerProps } from './container.js'

interface AtRuleRaws {
interface AtRuleRaws extends Record<string, unknown> {
/**
* The space symbols before the node. It also stores `*`
* and `_` symbols before the declaration (IE hack).
Expand Down
2 changes: 1 addition & 1 deletion lib/comment.d.ts
@@ -1,7 +1,7 @@
import Container from './container.js'
import Node, { NodeProps } from './node.js'

interface CommentRaws {
interface CommentRaws extends Record<string, unknown> {
/**
* The space symbols before the node.
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/declaration.d.ts
@@ -1,7 +1,7 @@
import Container from './container.js'
import Node from './node.js'

interface DeclarationRaws {
interface DeclarationRaws extends Record<string, unknown> {
/**
* The space symbols before the node. It also stores `*`
* and `_` symbols before the declaration (IE hack).
Expand Down
2 changes: 1 addition & 1 deletion lib/rule.d.ts
@@ -1,6 +1,6 @@
import Container, { ContainerProps } from './container.js'

interface RuleRaws {
interface RuleRaws extends Record<string, unknown> {
/**
* The space symbols before the node. It also stores `*`
* and `_` symbols before the declaration (IE hack).
Expand Down

0 comments on commit d56b0ea

Please sign in to comment.