mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
20 lines
366 B
JavaScript
20 lines
366 B
JavaScript
(() =>
|
|
{
|
|
return (settings, resources) =>
|
|
{
|
|
class Toast
|
|
{
|
|
constructor(type = "info", message = "", title = "")
|
|
{
|
|
this.type = type;
|
|
this.message = message;
|
|
this.title = title;
|
|
}
|
|
}
|
|
|
|
|
|
return {
|
|
ajaxReload: false
|
|
};
|
|
};
|
|
})(); |