From 823fea9525f274db0512947dd7bb77b916d7bba1 Mon Sep 17 00:00:00 2001 From: Eugene Zolenko Date: Mon, 30 Apr 2018 09:01:33 -0600 Subject: [PATCH] - fix for linter --- dist/ioptions.d.ts | 4 ++-- src/ioptions.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/ioptions.d.ts b/dist/ioptions.d.ts index 8a0dfcc3..e0001c7c 100644 --- a/dist/ioptions.d.ts +++ b/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; after?: tsTypes.TransformerFactory; } -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[]; diff --git a/src/ioptions.ts b/src/ioptions.ts index 2f1be998..2481f4b4 100644 --- a/src/ioptions.ts +++ b/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; after?: tsTypes.TransformerFactory; } -export type TransformerFactoryCreator = (ls: tsTypes.LanguageService) => tsTypes.CustomTransformers | CustomTransformer; +export type TransformerFactoryCreator = (ls: tsTypes.LanguageService) => tsTypes.CustomTransformers | ICustomTransformer; export interface IOptions {