mirror of
https://github.com/ezolenko/rollup-plugin-typescript2.git
synced 2025-12-08 19:06:16 +00:00
- using rollup's own types - min rollup bumped to 0.68 - updating dependencies - package version 0.19
15 lines
618 B
TypeScript
15 lines
618 B
TypeScript
import { IContext, VerbosityLevel } from "./context";
|
|
import { PluginContext } from "rollup";
|
|
export declare class RollupContext implements IContext {
|
|
private verbosity;
|
|
private bail;
|
|
private context;
|
|
private prefix;
|
|
private hasContext;
|
|
constructor(verbosity: VerbosityLevel, bail: boolean, context: PluginContext, prefix?: string);
|
|
warn(message: string | (() => string)): void;
|
|
error(message: string | (() => string)): void;
|
|
info(message: string | (() => string)): void;
|
|
debug(message: string | (() => string)): void;
|
|
}
|
|
//# sourceMappingURL=rollupcontext.d.ts.map
|