- MANUAL-PRODUTO.md: Manual do usuário final - MANUAL-VENDAS.md: Estratégia comercial e vendas - MANUAL-TECNICO.md: Infraestrutura e deploy - README.md: Visão geral do projeto
14 lines
295 B
TypeScript
14 lines
295 B
TypeScript
/// <reference types="./css" />
|
|
/// <reference types="./index" />
|
|
/// <reference types="./macro" />
|
|
/// <reference types="./style" />
|
|
|
|
import React from 'react'
|
|
|
|
declare module 'react' {
|
|
interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
jsx?: boolean
|
|
global?: boolean
|
|
}
|
|
}
|