@cnamts/vue-dot
Version:
Implementation of our Design System for the French Health Insurance
13 lines (10 loc) • 326 B
TypeScript
import { TypeEnum } from './CookiesInformation/TypeEnum';
import { CookiesList } from './CookiesTable/types';
export type CookiesPageItems = {
[key in TypeEnum]?: CookiesList[];
};
export type Preferences = {
[key: string]: boolean | null;
[TypeEnum.FUNCTIONAL]: boolean | null;
[TypeEnum.ANALYTICS]: boolean | null;
};