From 0c7e59849a36d058f263e454e600e27073a0e8ec Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Tue, 25 Jun 2024 19:19:38 -1000 Subject: [PATCH] docs(federation): :bug: Update docs to match API changes --- README.md | 5 ----- federation/README.md | 4 +++- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5b9b99a..c589f4a 100644 --- a/README.md +++ b/README.md @@ -25,11 +25,6 @@ Please see the [**`@lysand-org/federation` README**](federation/README.md) for m ### Client -#### Roadmap - -- [x] Parity with [**megalodon**](https://github.com/h3poteto/megalodon)'s Mastodon client -- [ ] Lysand-specific features - Please see the [**`@lysand-org/client` README**](client/README.md) for more information. ## Getting Started diff --git a/federation/README.md b/federation/README.md index bcdafea..6773f2f 100644 --- a/federation/README.md +++ b/federation/README.md @@ -38,7 +38,9 @@ try { } // Types are also included for TypeScript users that don't use the extracted ones -const validNoteObject: typeof EntityValidator.$Note = { +import type { Note } from "@lysand-org/federation/types"; + +const validNoteObject: Note = { type: "Note", // ... };