@data-client/core
Version:
Async State Management without the Management. REST, GraphQL, SSE, Websockets, Fetch
15 lines (12 loc) • 397 B
text/typescript
import type { EndpointInterface } from '@data-client/normalizr';
import { INVALIDATE } from '../../actionTypes.js';
import type { InvalidateAction } from '../../types.js';
export function createInvalidate<E extends EndpointInterface>(
endpoint: E,
{ args }: { args: readonly [...Parameters<E>] },
): InvalidateAction {
return {
type: INVALIDATE,
key: endpoint.key(...args),
};
}