Variable projectSettingsAtomConst

projectSettingsAtom: PrimitiveAtom<Partial<{
    exporterRoles?: string[];
    rowyRunDeployStatus: "BUILDING" | "COMPLETE";
    rowyRunRegion: string;
    rowyRunUrl: string;
    services: Partial<{
        builder: string;
        hooks: string;
        terminal: string;
    }>;
    setupCompleted: boolean;
    tables: TableSettings[];
}>> & WithInitialValue<Partial<{
    exporterRoles?: string[];
    rowyRunDeployStatus: "BUILDING" | "COMPLETE";
    rowyRunRegion: string;
    rowyRunUrl: string;
    services: Partial<{
        builder: string;
        hooks: string;
        terminal: string;
    }>;
    setupCompleted: boolean;
    tables: TableSettings[];
}>> = ...

Project settings are visible to authenticated users

Generated using TypeDoc