UNPKG

tailwindcss-3d

Version:

Add 3D transforms to your TailwindCSS project

20 lines (19 loc) 636 B
import { type PluginUtils } from 'tailwindcss/types/config'; import { type CSSAnimation } from '@/css-animations'; import { Base } from '@/css-animations/base'; type Value = [string, string]; type Values = Record<string, Value>; export declare class BounceAndSpin extends Base implements CSSAnimation { private isProcessablePrimitive; private isProcessableValue; private isProcessableValues; private normaliseValues; defaultTheme: Values; keyframes: ({ theme }: PluginUtils) => { [x: string]: boolean; }; animation: ({ theme }: PluginUtils) => { [x: string]: boolean; }; } export {};