mirror of
https://github.com/ezolenko/rollup-plugin-typescript2.git
synced 2025-12-08 19:06:16 +00:00
14 lines
483 B
TypeScript
14 lines
483 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;
|
|
}
|