Interface DeputyWikiConfigurationUpdate

interface DeputyWikiConfigurationUpdate {
    config: Omit<WikiPageConfiguration, "title"> & {
        title: string;
    };
    type: "wikiConfigUpdate";
}

Properties

Properties

config: Omit<WikiPageConfiguration, "title"> & {
    title: string;
}

The new configuration.

type: "wikiConfigUpdate"