({
persister,
persistersById,
persisterId,
}: {
readonly persister?: AnyPersister;
readonly persistersById?: {[persisterId: string]: AnyPersister};
readonly persisterId?: string;
})
| 628 | }) => <>{JSON.stringify(useCheckpointIds(checkpointsId))}</>; |
| 629 | |
| 630 | const ContextPersister = ({ |
| 631 | persister, |
| 632 | persistersById, |
| 633 | persisterId, |
| 634 | }: { |
| 635 | readonly persister?: AnyPersister; |
| 636 | readonly persistersById?: {[persisterId: string]: AnyPersister}; |
| 637 | readonly persisterId?: string; |
| 638 | }) => ( |
| 639 | <Provider persister={persister} persistersById={persistersById}> |
| 640 | <ContextPersisterChild persisterId={persisterId} /> |
| 641 | </Provider> |
| 642 | ); |
| 643 | |
| 644 | const ContextPersisterChild = ({ |
| 645 | persisterId, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…