Variable serviceActionsConst
serviceActions: { getServiceByPersonAndConn: AsyncThunk<string, void, AsyncThunkConfig>; getServiceId: AsyncThunk< IService, { serviceId: string; workspaceId: string }, AsyncThunkConfig, >; serviceAction: AsyncThunk< any, { reasonId: string; serviceId: string; status: string; win: boolean; workspaceId: string; }, AsyncThunkConfig, >; serviceTransfer: AsyncThunk< any, { data: { description: string; reason: string; sector: string; user: string; }; serviceId: string; workspaceId: string; }, AsyncThunkConfig, >; setIsLoading: ActionCreatorWithOptionalPayload<boolean>; setSelectedServiceFirebaseById: ActionCreatorWithOptionalPayload< "serviceReducer/setSelectedServiceFirebaseById", >; setServiceInAttendance: ActionCreatorWithOptionalPayload<IServiceState[]>; setServiceInQueue: ActionCreatorWithOptionalPayload<IServiceState[]>; unselectService: ActionCreatorWithoutPayload< "serviceReducer/unselectService", >;} = ... Type declaration
getServiceByPersonAndConn: AsyncThunk<string, void, AsyncThunkConfig>
getServiceId: AsyncThunk<
IService,
{ serviceId: string; workspaceId: string },
AsyncThunkConfig,
>
serviceAction: AsyncThunk<
any,
{
reasonId: string;
serviceId: string;
status: string;
win: boolean;
workspaceId: string;
},
AsyncThunkConfig,
>
serviceTransfer: AsyncThunk<
any,
{
data: {
description: string;
reason: string;
sector: string;
user: string;
};
serviceId: string;
workspaceId: string;
},
AsyncThunkConfig,
>
setIsLoading: ActionCreatorWithOptionalPayload<boolean>
setSelectedServiceFirebaseById: ActionCreatorWithOptionalPayload<
"serviceReducer/setSelectedServiceFirebaseById",
>
setServiceInAttendance: ActionCreatorWithOptionalPayload<IServiceState[]>
setServiceInQueue: ActionCreatorWithOptionalPayload<IServiceState[]>
unselectService: ActionCreatorWithoutPayload<"serviceReducer/unselectService">