fix: daletl body spec and types

This commit is contained in:
Artemy Egorov 2024-07-28 22:30:19 +03:00
parent bac4c25681
commit 1626ef38eb
6 changed files with 9 additions and 9 deletions

View file

@ -21,7 +21,7 @@ All tags specification is in [Tags](./tags.md).
```typescript
interface Tag {
id: number;
body: Tag[] | null;
body: string | Tag[] | null;
argument: string | number | null;
}
```