Eugene Zolenko eef600da27
Revert "Do not use deprecated rollup options (#127)" (#128)
This reverts commit b1d5c07b5cc3c2249e2d2972920f6973f261650c.
2019-01-03 11:35:04 -07:00

15 lines
664 B
TypeScript

import { IRollupContext } from "./context";
import { IRollupCode } from "./tscache";
import { IRollupOptions } from "./irollup-options";
import { IOptions } from "./ioptions";
import { Partial } from "./partial";
export default function typescript(options?: Partial<IOptions>): {
name: string;
options(config: IRollupOptions): void;
resolveId(importee: string, importer: string): string | null;
load(id: string): string | undefined;
transform(this: IRollupContext, code: string, id: string): IRollupCode | undefined;
ongenerate(): void;
onwrite({ dest, file }: IRollupOptions): void;
};
//# sourceMappingURL=index.d.ts.map