type.ts 239 B

1234567891011121314
  1. export interface CompanyInfoList {
  2. id: number;
  3. name: string;
  4. }
  5. export interface LayoutInfoList extends CompanyInfoList {
  6. layout: string;
  7. imgUrl: string;
  8. }
  9. export interface CompanyLayoutInfoList {
  10. id: number;
  11. layout: string;
  12. }