API Core - v1.5.0
    Preparing search index...

    Interface SettingStore

    An in-memory SettingManager and the spies on its writes, as createSettingStore builds them.

    interface SettingStore {
        setSpy: Mock<(key: string, value: string) => void>;
        settingManager: SettingManager;
        unsetSpy: Mock<(key: string) => void>;
    }
    Index
    setSpy: Mock<(key: string, value: string) => void>

    The spy behind the manager's set.

    settingManager: SettingManager

    The manager, over the seeded map.

    unsetSpy: Mock<(key: string) => void>

    The spy behind the manager's unset — wired only on request.