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", // ... };