Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Latest
class Comment
extends Node
Re-export
import { Comment } from "https://deno.land/x/postcss@8.4.16/lib/postcss.d.ts";

Represents a comment between declarations or statements (rule and at-rules).

Once (root, { Comment }) {
  let note = new Comment({ text: 'Note: …' })
  root.append(note)
}

Comments inside selectors, at-rule parameters, or declaration values will be stored in the raws properties explained above.

Constructors

new
Comment(defaults?: CommentProps)

Properties

parent: Container | undefined
raws: CommentRaws
text: string

The comment's text.

type: "comment"

Methods

assign(overrides: object | CommentProps): this
clone(overrides?: Partial<CommentProps>): this
cloneAfter(overrides?: Partial<CommentProps>): this
cloneBefore(overrides?: Partial<CommentProps>): this