KC's Workspace
    Preparing search index...

    Construct a type with a set of properties K of type T

    interface DeclarationRaws {
        before?: string;
        between?: string;
        important?: string;
        value?: { raw: string; value: string };
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    • Record<string, unknown>
      • DeclarationRaws

    Indexable

    • [key: string]: unknown
    Index

    Properties

    before?: string

    The space symbols before the node. It also stores * and _ symbols before the declaration (IE hack).

    between?: string

    The symbols between the property and value for declarations.

    important?: string

    The content of the important statement, if it is not just !important.

    value?: { raw: string; value: string }

    Declaration value with comments.