UnlyEd/next-right-now-admin

View on GitHub
src/types/data/Customer.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { GraphCMSSystemFields } from './GraphCMSSystemFields';
import { Theme } from './Theme';

export type Customer = {
  id?: string;
  ref?: string;
  labelFR?: string;
  labelEN?: string;
  termsEN?: {
    html: string;
  };
  termsFR?: {
    html: string;
  };
  theme?: Theme;
} & GraphCMSSystemFields;