/** * Before action hook. */ export type TinyProps = { /** * Xyz 123 */ message: string; /** * Product count */ count: number; /** * Is disabled */ disabled: boolean; }; /** * NOOOOOO */ export type Lol = { /** * Xyz 123 */ message: string; /** * Product count */ count: number; /** * Is disabled */ disabled: boolean; }; /** * Chill array * @example * let fruits: Chill */ export type Chill = string[]; /** * Button props */ export type Button = { children: string; onClick: () => void; };