UNPKG

tailwindcss-3d

Version:

Add 3D transforms to your TailwindCSS project

16 lines (15 loc) 559 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 Bounce extends Base implements CSSAnimation { private isProcessablePrimitive; private isProcessableValue; private isProcessableValues; private normaliseValues; defaultTheme: Values; keyframes: ({ theme }: PluginUtils) => {}; animation: ({ theme }: PluginUtils) => {}; } export {};