/var/www/flurhymez/node_modules/postcss/lib
NameSizeModeActions
at-rule.d.ts24660644editdlrm
at-rule.js4710644editdlrm
comment.d.ts13440644editdlrm
comment.js2030644editdlrm
container.d.ts125940644editdlrm
container.js102040644editdlrm
css-syntax-error.d.ts48440644editdlrm
css-syntax-error.js23210644editdlrm
declaration.d.ts30260644editdlrm
declaration.js4950644editdlrm
document.d.ts15240644editdlrm
document.js6540644editdlrm
fromJSON.d.ts1070644editdlrm
fromJSON.js15060644editdlrm
input.d.ts28120644editdlrm
input.js50570644editdlrm
lazy-result.d.ts48200644editdlrm
lazy-result.js134680644editdlrm
list.d.ts12620644editdlrm
list.js11670644editdlrm
map-generator.js76820644editdlrm
node.d.ts116750644editdlrm
node.js70800644editdlrm
parse.d.ts890644editdlrm
parse.js11470644editdlrm
parser.js136180644editdlrm
postcss.d.ts113380644editdlrm
postcss.js26280644editdlrm
postcss.mjs9370644editdlrm
previous-map.d.ts16180644editdlrm
previous-map.js39240644editdlrm
processor.d.ts29410644editdlrm
processor.js21320644editdlrm
result.d.ts40810644editdlrm
result.js7450644editdlrm
root.d.ts18560644editdlrm
root.js12090644editdlrm
rule.d.ts23630644editdlrm
rule.js5690644editdlrm
stringifier.js81640644editdlrm
stringify.d.ts1070644editdlrm
stringify.js2130644editdlrm
symbols.js910644editdlrm
terminal-highlight.js13990644editdlrm
tokenize.js65360644editdlrm
warn-once.js2240644editdlrm
warning.d.ts19330644editdlrm
warning.js6480644editdlrm
Edit: /var/www/flurhymez/node_modules/postcss/lib/comment.d.ts (1344B)
import Container from './container.js' import Node, { NodeProps } from './node.js' interface CommentRaws { /** * The space symbols before the node. */ before?: string /** * The space symbols between `/*` and the comment’s text. */ left?: string /** * The space symbols between the comment’s text. */ right?: string } export interface CommentProps extends NodeProps { /** Content of the comment. */ text: string /** Information used to generate byte-to-byte equal node string as it was in the origin input. */ raws?: CommentRaws } /** * Represents a comment between declarations or statements (rule and at-rules). * * ```js * 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. */ export default class Comment extends Node { type: 'comment' parent: Container | undefined raws: CommentRaws /** * The comment's text. */ text: string constructor(defaults?: CommentProps) assign(overrides: object | CommentProps): this clone(overrides?: Partial): this cloneBefore(overrides?: Partial): this cloneAfter(overrides?: Partial): this }