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`.