Skip to content

Commit

Permalink
fix: wrong import paths (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
smoya authored Jul 7, 2021
1 parent 52e0887 commit 19618ed
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/generators/AbstractGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { CommonInputModel, CommonModel, OutputModel, Preset, Presets } from '../
import { InputProcessor } from '../processors';
import { IndentationTypes } from '../helpers';
import { isPresetWithOptions } from '../utils';
import { RenderOutput } from 'models/RenderOutput';
import { RenderOutput } from '../models/RenderOutput';

export interface CommonGeneratorOptions<P extends Preset = Preset> {
indentation?: {
Expand Down
4 changes: 2 additions & 2 deletions src/interpreter/InterpretAdditionalItems.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { CommonModel } from 'models';
import { Schema } from 'models/Schema';
import { CommonModel } from '../models';
import { Schema } from '../models/Schema';
import { Interpreter, InterpreterOptions } from './Interpreter';

/**
Expand Down
4 changes: 2 additions & 2 deletions src/interpreter/InterpretAdditionalProperties.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { CommonModel } from 'models';
import { Schema } from 'models/Schema';
import { CommonModel } from '../models';
import { Schema } from '../models/Schema';
import { Interpreter, InterpreterOptions } from './Interpreter';
import { isModelObject } from './Utils';

Expand Down

0 comments on commit 19618ed

Please sign in to comment.