Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

VariantObject

interface VariantObject <Theme extends object = object> {
match: VariantFunction<Theme>;
multiPass?: boolean;
name?: string;
order?: number;
}

§Type Parameters

§
Theme extends object = object
[src]

§Properties

§

Custom function for auto complete

§
match: VariantFunction<Theme>
[src]

The entry function to match and rewrite the selector for further processing.

§
multiPass?: boolean
[src]

Allows this variant to be used more than once in matching a single rule

§
name?: string
[src]

The name of the variant.

§
order?: number
[src]

Sort for when the match is applied.