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