astro-tw-autoreference
Version:
Automaticaly inject tailwind `@reference` directives into Astro component style blocks.
12 lines • 313 B
TypeScript
export type OneOrMany<T> = T | T[];
export interface Options {
include?: OneOrMany<string>;
exclude?: OneOrMany<string>;
references?: OneOrMany<string>;
}
export interface NormalizedOptions {
include: string[];
exclude: string[];
references: string[];
}
//# sourceMappingURL=types.d.ts.map