mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-12 19:01:47 +00:00
feat: run prettier
This commit is contained in:
@ -10,19 +10,23 @@ export interface Plugin<ConfigType extends Config> {
|
||||
config: ConfigType;
|
||||
}
|
||||
|
||||
export interface RendererPlugin<ConfigType extends Config> extends Plugin<ConfigType> {
|
||||
export interface RendererPlugin<ConfigType extends Config>
|
||||
extends Plugin<ConfigType> {
|
||||
onEnable: (config: ConfigType) => void;
|
||||
}
|
||||
|
||||
export interface MainPlugin<ConfigType extends Config> extends Plugin<ConfigType> {
|
||||
export interface MainPlugin<ConfigType extends Config>
|
||||
extends Plugin<ConfigType> {
|
||||
onEnable: (window: BrowserWindow, config: ConfigType) => string;
|
||||
}
|
||||
|
||||
export interface PreloadPlugin<ConfigType extends Config> extends Plugin<ConfigType> {
|
||||
export interface PreloadPlugin<ConfigType extends Config>
|
||||
extends Plugin<ConfigType> {
|
||||
onEnable: (config: ConfigType) => void;
|
||||
}
|
||||
|
||||
export interface MenuPlugin<ConfigType extends Config> extends Plugin<ConfigType> {
|
||||
export interface MenuPlugin<ConfigType extends Config>
|
||||
extends Plugin<ConfigType> {
|
||||
onEnable: (config: ConfigType) => void;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user