html-theme.d.ts 454 B

12345678910111213141516171819
  1. declare const _default: {
  2. [x: string]: {
  3. position: string;
  4. backgroundColor?: undefined;
  5. color?: undefined;
  6. fontFamily?: undefined;
  7. } | {
  8. position: string;
  9. backgroundColor: string;
  10. color?: undefined;
  11. fontFamily?: undefined;
  12. } | {
  13. position: string;
  14. color: string;
  15. fontFamily: string;
  16. backgroundColor?: undefined;
  17. };
  18. };
  19. export default _default;