interface StyleSheet {
    attributes: any[];
    children: (Rule | Atrule)[];
    content: {
        comment: null | Comment;
        end: number;
        start: number;
        styles: string;
    };
    end: number;
    start: number;
    type: "StyleSheet";
}

Hierarchy (View Summary)

Properties

attributes: any[]
children: (Rule | Atrule)[]
content: { comment: null | Comment; end: number; start: number; styles: string }

Type declaration

  • comment: null | Comment

    Possible comment atop the style tag

  • end: number
  • start: number
  • styles: string
end: number
start: number
type: "StyleSheet"