fix(): Fix imports due to merge conflict

This commit is contained in:
Sven Depickere 2022-11-26 20:25:02 +01:00
parent fbda09e3b1
commit 81b305103c
2 changed files with 3 additions and 7 deletions

View File

@ -1,7 +1,6 @@
import { action, observable, makeObservable } from 'mobx';
import type {
MilesConstants,
OpenAPIParameter,
OpenAPIParameterLocation,
OpenAPIParameterStyle,
@ -14,6 +13,7 @@ import type { OpenAPIParser } from '../OpenAPIParser';
import { SchemaModel } from './Schema';
import { ExampleModel } from './Example';
import { isArray, mapValues } from '../../utils/helpers';
import { MilesConstants } from '../../types';
const DEFAULT_SERIALIZATION: Record<
OpenAPIParameterLocation,

View File

@ -1,11 +1,6 @@
import { action, observable, makeObservable } from 'mobx';
import type {
MilesConstants,
OpenAPIExternalDocumentation,
OpenAPISchema,
Referenced,
} from '../../types';
import type { OpenAPIExternalDocumentation, OpenAPISchema, Referenced } from '../../types';
import type { OpenAPIParser } from '../OpenAPIParser';
import { pushRef } from '../OpenAPIParser';
@ -29,6 +24,7 @@ import {
} from '../../utils/';
import { l } from '../Labels';
import { MilesConstants } from '../../types';
// TODO: refactor this model, maybe use getters instead of copying all the values
export class SchemaModel {