rollup-plugin-typescript2/dist/rollupcontext.d.ts
ezolenko 80a42b63fa - fix for type definitions eating memory in watch mode
- publishing type definitions
2017-05-29 22:41:44 -06:00

14 lines
470 B
TypeScript

import { IContext, IRollupContext, VerbosityLevel } from "./context";
export declare class RollupContext implements IContext {
private verbosity;
private bail;
private context;
private prefix;
private hasContext;
constructor(verbosity: VerbosityLevel, bail: boolean, context: IRollupContext, prefix?: string);
warn(message: string): void;
error(message: string): void;
info(message: string): void;
debug(message: string): void;
}