UNPKG

339 BTypeScriptView Raw
1import Env from './env';
2import * as plugins from './plugins';
3import { Plugin } from './types';
4export { Env };
5export { Plugin } from './types';
6export declare type Plugins = typeof plugins;
7export declare type ConfigurationCallback = (plugins: Plugins, env: Env) => {
8 library?: boolean;
9 name?: string;
10 plugins: Plugin[];
11};