Skip to content

Commit

Permalink
refactor: floating model imports to the top for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
Varun0157 committed Jun 30, 2024
1 parent 41c15e0 commit 8a14862
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/constructCurl.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { getStringValueIfDefined } from "./utils/typeUtils";

import { getParamsForUrl, getURL } from "./executeRequest";
import { RequestSpec } from "./models";
import { getParamsForUrl, getURL } from "./executeRequest";

function replaceSingleQuotes<T>(value: T): T {
if (typeof value !== "string") return value;
Expand Down
2 changes: 1 addition & 1 deletion src/replaceVars.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { getStrictStringValue, isArrayOrDict } from "./utils/typeUtils";

import { Variables } from "./variables";
import { RequestSpec } from "./models";
import { Variables } from "./variables";

function replaceVariablesInArray(
data: any[],
Expand Down

0 comments on commit 8a14862

Please sign in to comment.