From 397d011c5f76b4d841b24b4988fad34f720305bb Mon Sep 17 00:00:00 2001 From: kheiner Date: Mon, 3 Nov 2025 09:51:41 -0800 Subject: [PATCH] Fix formatting for 'Types to Avoid' section --- .../3.tips-and-tricks/advanced-types-with-the-directus-sdk.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorials/3.tips-and-tricks/advanced-types-with-the-directus-sdk.md b/content/tutorials/3.tips-and-tricks/advanced-types-with-the-directus-sdk.md index 3562fe91..313a50b3 100644 --- a/content/tutorials/3.tips-and-tricks/advanced-types-with-the-directus-sdk.md +++ b/content/tutorials/3.tips-and-tricks/advanced-types-with-the-directus-sdk.md @@ -105,7 +105,7 @@ In the output types these string literals will get resolved to their appropriate - `'datetime'` resolves to `string` - `'json'` resolves to [`JsonValue`](https://github.com/directus/directus/blob/main/sdk/src/types/output.ts#L105) -::: tip Types to Avoid +:::tip Types to Avoid Some types should be avoided in the Schema as they may not play well with the type logic: `any` or `any[]`, empty type `{}`, `never` or `void`.