Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpza committed Aug 18, 2024
1 parent d843ecc commit 91e3ee8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import ts, { CompilerOptions, EmitHost, Pattern, SourceFile } from "typescript";
import { PluginConfig } from "ts-patch";
import { Minimatch } from "minimatch";

import { HarmonyFactory } from "./harmony";
import { IMinimatch } from "minimatch";

/* ****************************************************************************************************************** */
// region: TS Types
Expand Down Expand Up @@ -43,7 +44,7 @@ export interface TsTransformPathsContext {
readonly elisionMap: Map<ts.SourceFile, Map<ImportOrExportDeclaration, ImportOrExportDeclaration>>;
readonly transformationContext: ts.TransformationContext;
readonly rootDirs?: string[];
readonly excludeMatchers: IMinimatch[] | undefined;
readonly excludeMatchers: Minimatch[] | undefined;
readonly outputFileNamesCache: Map<SourceFile, string>;
readonly pathsPatterns: readonly (string | Pattern)[] | undefined;
readonly emitHost: EmitHost;
Expand Down

0 comments on commit 91e3ee8

Please sign in to comment.