Skip to content

Commit 19618ed

Browse files
authored
fix: wrong import paths (#292)
1 parent 52e0887 commit 19618ed

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/generators/AbstractGenerator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { CommonInputModel, CommonModel, OutputModel, Preset, Presets } from '../
22
import { InputProcessor } from '../processors';
33
import { IndentationTypes } from '../helpers';
44
import { isPresetWithOptions } from '../utils';
5-
import { RenderOutput } from 'models/RenderOutput';
5+
import { RenderOutput } from '../models/RenderOutput';
66

77
export interface CommonGeneratorOptions<P extends Preset = Preset> {
88
indentation?: {

src/interpreter/InterpretAdditionalItems.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { CommonModel } from 'models';
2-
import { Schema } from 'models/Schema';
1+
import { CommonModel } from '../models';
2+
import { Schema } from '../models/Schema';
33
import { Interpreter, InterpreterOptions } from './Interpreter';
44

55
/**

src/interpreter/InterpretAdditionalProperties.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { CommonModel } from 'models';
2-
import { Schema } from 'models/Schema';
1+
import { CommonModel } from '../models';
2+
import { Schema } from '../models/Schema';
33
import { Interpreter, InterpreterOptions } from './Interpreter';
44
import { isModelObject } from './Utils';
55

0 commit comments

Comments
 (0)