This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import styles from './input.module.scss'; | |
import classNames from 'classnames'; | |
export type ValueType = 'boolean' | 'number' | 'string'; | |
interface InputPropsBase { | |
type: ValueType; | |
className?: string; | |
value?: unknown | null; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module 'grapesjs-custom-code'; | |
declare module 'grapesjs-lory-slider'; | |
declare module 'grapesjs-parser-postcss'; | |
declare module 'grapesjs-preset-webpage'; | |
declare module 'grapesjs-style-bg'; | |
declare module 'grapesjs-tabs'; | |
declare module 'grapesjs-tooltip'; | |
declare module 'grapesjs-touch'; | |
declare module 'grapesjs-tui-image-editor'; | |
declare module 'grapesjs-typed'; |