Loto / src /react-app-env.d.ts
Raí Santos
oi
4c1e4ec
raw
history blame contribute delete
278 Bytes
/// <reference types="react-scripts" />
// Extensões de tipos para Chart.js
declare module 'chart.js/auto' {
export * from 'chart.js';
}
// Extensão para navigator.connection
interface Navigator {
connection?: {
effectiveType?: string;
downlink?: number;
};
}