JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "bootstrap-data.ts"

Full Path: /home/markqprx/iniasli.pro/client/core/bootstrap-data/bootstrap-data.ts
File size: 638 bytes
MIME-type: text/plain
Charset: utf-8

import {CssTheme} from '../../ui/themes/css-theme';
import {Settings} from '../settings/settings';
import {User} from '../../auth/user';
import {Role} from '../../auth/role';
import {Localization} from '../../i18n/localization';
import {MetaTag} from '../../seo/meta-tag';

export interface BootstrapData {
  themes: {all: CssTheme[]; selectedThemeId?: number | string | null};
  sentry_release: string;
  is_mobile_device: boolean;
  csrf_token: string;
  settings: Settings;
  user: User | null;
  guest_role: Role | null;
  i18n: Localization;
  default_meta_tags: MetaTag[];
  show_cookie_notice: boolean;
  rendered_ssr?: boolean;
}