UNPKG

flowbite-react

Version:

Official React components built for Flowbite and Tailwind CSS

10 lines (9 loc) 234 B
export interface TransformResult { content: string; changed: boolean; } export interface Transformer { name: string; transform: (content: string) => TransformResult; } export declare function migrate(): Promise<void>;