m3-academy-template-vtexio/custom/react/typings/vtex.styleguide.d.ts
Caroline Moran f2a03c53ae first commit
2022-08-11 09:06:07 -04:00

10 lines
193 B
TypeScript

declare module "vtex.styleguide" {
import { ComponentType } from "react";
export const Input: ComponentType<InputProps>;
interface InputProps {
[key: string]: any
}
}