Skip to content

Commit

Permalink
- fix for linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ezolenko committed Apr 30, 2018
1 parent 9e1342a commit 823fea9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/ioptions.d.ts
@@ -1,10 +1,10 @@
import { tsModule } from "./tsproxy";
import * as tsTypes from "typescript";
export interface CustomTransformer {
export interface ICustomTransformer {
before?: tsTypes.TransformerFactory<tsTypes.SourceFile>;
after?: tsTypes.TransformerFactory<tsTypes.SourceFile>;
}
export declare type TransformerFactoryCreator = (ls: tsTypes.LanguageService) => tsTypes.CustomTransformers | CustomTransformer;
export declare type TransformerFactoryCreator = (ls: tsTypes.LanguageService) => tsTypes.CustomTransformers | ICustomTransformer;
export interface IOptions {
include: string | string[];
exclude: string | string[];
Expand Down
4 changes: 2 additions & 2 deletions src/ioptions.ts
@@ -1,13 +1,13 @@
import { tsModule } from "./tsproxy";
import * as tsTypes from "typescript";

export interface CustomTransformer
export interface ICustomTransformer
{
before?: tsTypes.TransformerFactory<tsTypes.SourceFile>;
after?: tsTypes.TransformerFactory<tsTypes.SourceFile>;
}

export type TransformerFactoryCreator = (ls: tsTypes.LanguageService) => tsTypes.CustomTransformers | CustomTransformer;
export type TransformerFactoryCreator = (ls: tsTypes.LanguageService) => tsTypes.CustomTransformers | ICustomTransformer;

export interface IOptions
{
Expand Down

0 comments on commit 823fea9

Please sign in to comment.