UNPKG

@data-client/core

Version:

Async State Management without the Management. REST, GraphQL, SSE, Websockets, Fetch

10 lines (8 loc) 200 B
import { RESET } from '../../actionTypes.js'; import type { ResetAction } from '../../types.js'; export function createReset(): ResetAction { return { type: RESET, date: Date.now(), }; }