UNPKG

@istanbul/app

Version:

App package of istanbul framework

12 lines (11 loc) 294 B
import { App } from "../types/app.type"; export interface Plugin { name: string; multiple: boolean; install(app: App, ...options: any[]): void; } export declare type CreatePluginParams = { name: string; multiple?: boolean; install(app: App, ...options: any[]): void; };