mirror of
https://github.com/meowarex/TidaLuna-Plugins.git
synced 2026-06-18 03:43:10 +10:00
18 lines
386 B
TypeScript
18 lines
386 B
TypeScript
import { ReactiveStore } from "@luna/core";
|
|
import { LunaSettings } from "@luna/ui";
|
|
import React from "react";
|
|
|
|
export const settings = await ReactiveStore.getPluginStorage("ElementHider", {
|
|
hiddenElements: [] as Array<{
|
|
selector: string;
|
|
tagName: string;
|
|
className: string;
|
|
textContent: string;
|
|
timestamp: number;
|
|
}>,
|
|
});
|
|
|
|
export const Settings = () => {
|
|
return null;
|
|
};
|