mirror of
https://github.com/ezolenko/rollup-plugin-typescript2.git
synced 2025-12-08 19:06:16 +00:00
- fix for linter
This commit is contained in:
parent
9e1342a719
commit
823fea9525
4
dist/ioptions.d.ts
vendored
4
dist/ioptions.d.ts
vendored
@ -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[];
|
||||
|
||||
@ -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
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user