Skip to content

Commit

Permalink
test(reference): reorganize the OpenAPI 3.1 swagger-client helpers
Browse files Browse the repository at this point in the history
Refs #2289
  • Loading branch information
char0n committed Dec 1, 2022
1 parent 67ce5c1 commit d1a0272
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import stampit from 'stampit';
import { ParseResultElement, from } from '@swagger-api/apidom-core';

import { Parser as IParser, File as IFile } from '../../../../../../src/types';
import Parser from '../../../../../../src/parse/parsers/Parser';
import { ParserError } from '../../../../../../src';
import { Parser as IParser, File as IFile } from '../../../../../../../src/types';
import Parser from '../../../../../../../src/parse/parsers/Parser';
import { ParserError } from '../../../../../../../src';

const JsonParser: stampit.Stamp<IParser> = stampit(Parser, {
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import stampit from 'stampit';
import jsYaml from 'js-yaml'; // js-yaml comes with swagger-client
import { ParseResultElement, from } from '@swagger-api/apidom-core';

import { ParserError } from '../../../../../../src/util/errors';
import { File as IFile, Parser as IParser } from '../../../../../../src/types';
import Parser from '../../../../../../src/parse/parsers/Parser';
import { ParserError } from '../../../../../../../src/util/errors';
import { File as IFile, Parser as IParser } from '../../../../../../../src/types';
import Parser from '../../../../../../../src/parse/parsers/Parser';

const YamlParser: stampit.Stamp<IParser> = stampit(Parser, {
props: {
Expand Down

0 comments on commit d1a0272

Please sign in to comment.