method postcss.Node.prototype.nextRe-exportimport { postcss } from "https://deno.land/x/bundler@0.6.5/deps.ts"; const { Node } = postcss; next(): ChildNode | undefinedReturns the next child of the node’s parent. Returns undefined if the current node is the last child. Returns the next child of the node’s parent. Returns undefined if the current node is the last child. if (comment.text === 'delete next') { const next = comment.next() if (next) { next.remove() } } ReturnsChildNode | undefinedNext node.