MCPcopy Create free account
hub / github.com/bewcloud/bewcloud / SettingsProps

Interface SettingsProps

components/Settings.ts:8–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6import Loading from '/components/Loading.ts';
7
8interface SettingsProps {
9 formData: Record<string, any>;
10 error?: {
11 title: string;
12 message: string;
13 };
14 notice?: {
15 title: string;
16 message: string;
17 };
18 currency?: SupportedCurrencySymbol;
19 timezoneId?: string;
20 isExpensesAppEnabled: boolean;
21 isMultiFactorAuthEnabled: boolean;
22 isCalendarAppEnabled: boolean;
23 helpEmail: string;
24 user: {
25 extra: Pick<User['extra'], 'multi_factor_auth_methods'>;
26 };
27}
28
29export type Action =
30 | 'change-email'

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected