All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.plugin.d.ts Maven / Gradle / Ivy

There is a newer version: 3.4.15
Show newest version
import type { Config, PluginCreator } from './types/config'
type Plugin = {
  withOptions(
    plugin: (options: T) => PluginCreator,
    config?: (options: T) => Partial
  ): { (options: T): { handler: PluginCreator; config?: Partial }; __isOptionsFunction: true }
  (plugin: PluginCreator, config?: Partial): { handler: PluginCreator; config?: Partial }
}

declare const plugin: Plugin
export = plugin




© 2015 - 2024 Weber Informatics LLC | Privacy Policy