gisaf-frontend/src/app/openapi/models/MapInitData.ts
2024-02-27 11:52:00 +05:30

15 lines
502 B
TypeScript

/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { BaseMapWithStores } from './BaseMapWithStores';
import type { BaseStyle } from './BaseStyle';
import type { CategoryGroup } from './CategoryGroup';
import type { Store } from './Store';
export type MapInitData = {
baseStyles?: Array<BaseStyle>;
baseMaps?: Array<BaseMapWithStores>;
groups?: Array<CategoryGroup>;
stores?: Array<Store>;
};