use-cornify
Version:
🦄 Put unicorns and rainbows on any website on the Internet with a single React Hook!
12 lines (11 loc) • 335 B
TypeScript
interface UseCornifyProps {
keys?: string[];
addCupcakeButton?: boolean;
addMagicalWords?: boolean;
younicorns?: string;
}
interface UseCornify {
remove: () => void;
}
export declare const useCornify: ({ keys, addMagicalWords, addCupcakeButton, younicorns, }?: UseCornifyProps) => UseCornify;
export {};