UNPKG

tailwindcss-3d

Version:

Add 3D transforms to your TailwindCSS project

17 lines (16 loc) 538 B
import { type PluginUtils } from 'tailwindcss/types/config'; import { type CSSAnimation } from '@/css-animations'; import { Base } from '@/css-animations/base'; type Value = string; type Values = Record<string, Value>; export declare class Spin extends Base implements CSSAnimation { private isProcessableValue; private isProcessableValues; private normaliseValues; defaultTheme: Values; private xyKeyframes; private zKeyframes; keyframes: () => {}; animation: ({ theme }: PluginUtils) => {}; } export {};