Skip to main content
Module

x/css/ast/node.ts

CSS Lexer & Parser implementation for Deno
Latest
File
import type { Position } from "./token.ts";
export interface Rule { type: string; text?: string; selectors: string[]; declarations: Decl[]; prefix?: string; position?: Position;}
export interface Decl { type?: string; name?: string; value?: string;}