teamdigitale/italia-app

View on GitHub
ts/theme/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type ThemeSimpleValue = undefined | number | string;

// A generic recursive type for the theme
export type Theme = {
  [key: string]: ThemeSimpleValue | Theme;
};