Files
mcb-platform-monorepo/packages/sentry/model/store/constants.ts
T
2025-11-25 09:43:22 +03:00

11 lines
243 B
TypeScript

import type { SentryState } from './types';
/** Состояние стейта по умолчанию. */
const initialSentryState: SentryState = {
attempts: 0,
token: null,
isSendingAllowed: false,
};
export { initialSentryState };