animated-unocss
Version:
A configuration to use Animate.css with UnoCSS.
14 lines (11 loc) • 364 B
TypeScript
import { Preset } from 'unocss';
interface Options {
/**
* Whether to output the entire animate.css.
* Which is very effective if you need to dynamically combine class names at runtime.
* @default true
*/
buildFullVersion: boolean;
}
declare function animatedUno({ buildFullVersion, }?: Options): Preset<any>;
export { animatedUno };