Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: allow all raws to be extended #1692

Merged
merged 1 commit into from Dec 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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