@rcb-plugins/input-validator
Version:
A lightweight plugin to validate user input with visual feedbacks in React ChatBotify!
20 lines • 468 B
TypeScript
import { Styles } from 'react-chatbotify';
/**
* Specifies the configurations for this example plugin.
*/
export type PluginConfig = {
autoConfig?: boolean;
promptBaseColors?: {
[key: string]: string;
};
promptHoveredColors?: {
[key: string]: string;
};
textAreaHighlightColors?: {
[key: string]: string;
};
advancedStyles?: {
[key: string]: Styles;
};
};
//# sourceMappingURL=PluginConfig.d.ts.map