Skip to content

Commit

Permalink
chore: import type
Browse files Browse the repository at this point in the history
  • Loading branch information
bvandercar-vt committed Nov 13, 2024
1 parent bf84798 commit 911541a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
declare namespace Cypress {
import {Log} from "./src/installLogsCollector";
import {BuiltinOutputProcessorsTypes} from "./src/types";
import type {Log} from "./src/installLogsCollector";
import type {BuiltinOutputProcessorsTypes} from "./src/types";

interface Cypress {
TerminalReport: {
Expand Down
2 changes: 1 addition & 1 deletion src/installLogsPrinter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import JsonOutputProcessor from "./outputProcessor/JsonOutputProcessor";
import TextOutputProcessor from "./outputProcessor/TextOutputProcessor";
import type {CustomOutputProcessorCallback, PluginOptions, AllMessages} from "./installLogsPrinter.types";
import type {BuiltinOutputProcessorsTypes, Log, LogType, MessageData, Severity} from "./types";
import {IOutputProcecessor} from "./outputProcessor/BaseOutputProcessor";
import type {IOutputProcecessor} from "./outputProcessor/BaseOutputProcessor";
import utils from "./utils";
import consoleProcessor from "./outputProcessor/consoleProcessor";
import {validate} from "superstruct";
Expand Down
2 changes: 1 addition & 1 deletion src/outputProcessor/NestedOutputProcessorDecorator.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as path from 'path';
import {IOutputProcecessor} from "./BaseOutputProcessor";
import type {IOutputProcecessor} from "./BaseOutputProcessor";
import type {AllMessages} from "../installLogsPrinter.types";

export default class NestedOutputProcessorDecorator implements IOutputProcecessor {
Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import jsonPrune from "./jsonPrune";
import {compare} from "compare-versions";
import {Failure} from "superstruct";
import type {Failure} from "superstruct";

const utils = {
nonQueueTask: async (name: string, data: Record<string, any>) => {
Expand Down

0 comments on commit 911541a

Please sign in to comment.