PluginOptionsType
Configuration options for creating a Plugin instance.
Import
import { PluginOptionsType } from "@hyper-fetch/core"
Source
Package
Preview
type PluginOptionsType<PluginData> = {
data?: PluginData;
name: string;
}
Structure
PluginOptionsType
| Name | Type | Description |
|---|---|---|
| data | | Data stored in a plugin |
| name | | Name of the plugin |
