keycloak-demo-frontend/src/base/themes/ThemeType.ts

12 lines
161 B
TypeScript

export type ThemeBase = 'v1';
export type ThemeValid = {
[key in ThemeBase]: ThemeBase;
};
const theme: ThemeValid = {
v1: 'v1',
};
export default theme;