Skip to content

Commit

Permalink
docs: Update demo page description
Browse files Browse the repository at this point in the history
  • Loading branch information
ntucker committed Sep 2, 2024
1 parent 2b10a49 commit 009d8ec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,7 @@ interface GCAction {
entities: [string, string][];
endpoints: string[];
}
/** @see https://dataclient.io/docs/api/Actions */
type ActionTypes = FetchAction | OptimisticAction | SetAction | SetResponseAction | SubscribeAction | UnsubscribeAction | InvalidateAction | InvalidateAllAction | ExpireAllAction | ResetAction | GCAction;

type Dispatch<Actions = ActionTypes> = (value: Actions) => Promise<void>;
Expand Down
4 changes: 2 additions & 2 deletions website/src/components/Playground/editor-types/react.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2428,9 +2428,9 @@ declare namespace React {
// Keyboard Events
onKeyDown?: KeyboardEventHandler<T> | undefined;
onKeyDownCapture?: KeyboardEventHandler<T> | undefined;
/** @deprecated */
/** @deprecated Use `onKeyUp` or `onKeyDown` instead */
onKeyPress?: KeyboardEventHandler<T> | undefined;
/** @deprecated */
/** @deprecated Use `onKeyUpCapture` or `onKeyDownCapture` instead */
onKeyPressCapture?: KeyboardEventHandler<T> | undefined;
onKeyUp?: KeyboardEventHandler<T> | undefined;
onKeyUpCapture?: KeyboardEventHandler<T> | undefined;
Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/demos.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function DemoList() {
return (
<Layout
title="React Suspense Demos"
description="Reactive Data Client Suspense Demos"
description="Examples demonstrating high performance scalable applications using REST, GraphQL and Websockets"
>
<Tabs
defaultValue="todo"
Expand Down

0 comments on commit 009d8ec

Please sign in to comment.