UNPKG

tailwind-plugin-typed

Version:

A plugin for Tailwind CSS to generate text typing animations.

11 lines (10 loc) 345 B
import { default as plugin } from 'tailwindcss/plugin'; interface Options { delimiter?: string; typeLetterDuration?: number; pauseAfterWordDuration?: number; deleteLetterDuration?: number; pauseAfterDeletionDuration?: number; } declare const _default: ReturnType<typeof plugin.withOptions<Options>>; export default _default;