/// <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; | |
}; | |
} | |