feat: adicionando vtex.styleguide.d.ts

This commit is contained in:
Ana Carolina Duarte Cavalcante 2023-02-07 06:28:39 -03:00
parent 8fc6ff370a
commit 0d79328fd6

9
react/typings/vtex.styleguide.d.ts vendored Normal file
View File

@ -0,0 +1,9 @@
declare module "vtex.styleguide" {
import { ComponentType } from "react";
export const Input: ComponentType<InputProps>;
interface InputProps {
[key: string]: any
}
}