- fix for linter

This commit is contained in:
Eugene Zolenko 2018-04-30 09:01:33 -06:00
parent 9e1342a719
commit 823fea9525
2 changed files with 4 additions and 4 deletions

4
dist/ioptions.d.ts vendored
View File

@ -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[];

View File

@ -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
{