This library is a type declaration of CSS class names in cirrus-ui.
npm install -D @alker0/cirrus-types
import { Cirrus } from "@alker0/cirrus-types";
const col: Cirrus = 'col';
You can also use the type from global.
import { Cirrus as CirrusClasses } from "@alker0/cirrus-types";
declare global {
type Cirrus = CirrusClasses;
}
MIT