Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mschnee committed Feb 10, 2020
1 parent 7be6291 commit 88c6492
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions packages/openapi-v3/src/decorators/response.decorator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@
// Node module: @loopback/openapi-v3
// This file is licensed under the MIT License.
// License text available at https://opensource.org/licenses/MIT
import { MethodMultiDecoratorFactory } from '@loopback/core';
import {MethodMultiDecoratorFactory} from '@loopback/core';
import httpStatus from 'http-status';
import { ContentObject, ReferenceObject, ResponseObject, SchemaObject } from 'openapi3-ts';
import { OAI3Keys } from '../keys';
import { ResponseDecoratorMetadata, ResponseModelOrSpec } from '../types';
import {
ContentObject,
ReferenceObject,
ResponseObject,
SchemaObject,
} from 'openapi3-ts';
import {OAI3Keys} from '../keys';
import {ResponseDecoratorMetadata, ResponseModelOrSpec} from '../types';

// overloading the definition because content cannot be undefined in this case.
interface ResponseWithContent extends ResponseObject {
Expand Down

0 comments on commit 88c6492

Please sign in to comment.