replugged

    Interface SettingsTools

    interface SettingsTools {
        addAfter: (
            sectionName: string,
            sections: Section | Section[],
        ) => Section[];
        addSection: (
            options: {
                _id?: string;
                color?: string;
                elem: (args: unknown) => ReactElement;
                fromEnd?: boolean;
                label?: string | LabelCallback;
                name: string;
                pos?: number;
            },
        ) => Section;
        removeAfter: (sectionName: string) => void;
        removeSection: (sectionName: string) => void;
        rpSections: Section[];
        rpSectionsAfter: Map<string, Section[]>;
    }
    Index

    Properties

    addAfter: (sectionName: string, sections: Section | Section[]) => Section[]
    addSection: (
        options: {
            _id?: string;
            color?: string;
            elem: (args: unknown) => ReactElement;
            fromEnd?: boolean;
            label?: string | LabelCallback;
            name: string;
            pos?: number;
        },
    ) => Section
    removeAfter: (sectionName: string) => void
    removeSection: (sectionName: string) => void
    rpSections: Section[]
    rpSectionsAfter: Map<string, Section[]>
    MMNEPVFCICPMFPCPTTAAATR