mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-16 20:52:06 +00:00
20 lines
361 B
TypeScript
20 lines
361 B
TypeScript
import style from './style.css?inline';
|
|
|
|
import { createPluginBuilder } from '../utils/builder';
|
|
|
|
const builder = createPluginBuilder('album-color-theme', {
|
|
name: 'Album Color Theme',
|
|
config: {
|
|
enabled: false,
|
|
},
|
|
styles: [style],
|
|
});
|
|
|
|
export default builder;
|
|
|
|
declare global {
|
|
interface PluginBuilderList {
|
|
[builder.id]: typeof builder;
|
|
}
|
|
}
|