UNPKG

188 BTypeScriptView Raw
1import { ContrastScores } from '../types/color';
2
3declare function meetsContrastGuidelines(
4 color1: string,
5 color2: string,
6): ContrastScores;
7
8export default meetsContrastGuidelines;