pl-api: Update docs

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak
2024-11-29 16:01:54 +01:00
parent b357261ff2
commit bc65755862
78 changed files with 221 additions and 22 deletions

View File

@ -16,6 +16,9 @@ const tokenSchema = v.object({
me: v.fallback(v.optional(v.string()), undefined),
});
/**
* @category Entity types
*/
type Token = v.InferOutput<typeof tokenSchema>;
export { tokenSchema, type Token };