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

File "link-overlay.ts"

Full Path: /home/markqprx/iniasli.pro/resources/client/dashboard/link-overlays/link-overlay.ts
File size: 627 bytes
MIME-type: text/plain
Charset: utf-8

import {User} from '@common/auth/user';

export interface LinkOverlay {
  id: number;
  name: string;
  position: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
  theme: 'default' | 'full-width' | 'rounded' | 'pill';
  message: string;
  label: string;
  btn_text: string;
  btn_link: string;
  user_id: number;
  user?: User;
  colors: {
    'bg-image'?: string;
    'bg-color'?: string;
    'text-color'?: string;
    'btn-bg-color'?: string;
    'btn-text-color'?: string;
    'label-bg-color'?: string;
    'label-color'?: string;
  };
  created_at: string;
  updated_at: string;
  model_type: 'linkOverlay';
}