fix(schema): add missed types `title`, `bodyAttrs`, `htmlAttrs` (#5184)

Co-authored-by: Daniel Roe <daniel@roe.dev>
This commit is contained in:
Alex Kozack 2022-06-01 00:30:17 +03:00 committed by GitHub
parent fca2ed7cc5
commit 1e8fba8378
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -23,4 +23,8 @@ export interface MetaObject extends Record<string, any> {
script?: Array<Record<string, any>>
titleTemplate?: string | ((title: string) => string)
title?: string
bodyAttrs?: Record<string, any>
htmlAttrs?: Record<string, any>
}