UNPKG

tailwindcss-3d

Version:

Add 3D transforms to your TailwindCSS project

19 lines (18 loc) 630 B
import { type ResolvableTo } from 'tailwindcss/types/config'; import { type KeyValuePair } from '@/common'; declare module '@/css-utilities' { interface CSSUtility { defaultTheme?: ResolvableTo<KeyValuePair<string, any>>; utilities: () => void; normaliseFunctionValues?: (values: Record<string, any>) => string; } } export * from './backface'; export * from './perspective'; export * from './perspective-origin'; export * from './scale'; export * from './transform'; export * from './transform-box'; export * from './transform-core'; export * from './transform-style'; export * from './translate';