aboutsummaryrefslogtreecommitdiff
path: root/types/ext
diff options
context:
space:
mode:
authorMatttttt <18152455+martholomew@users.noreply.github.com>2024-04-22 16:38:04 +0000
committerGitHub <noreply@github.com>2024-04-22 16:38:04 +0000
commit808ddef82a8eabc77ba20a0da89a392926550e76 (patch)
treefd04053c2f5355ac03828ea5206e3fa6c9a4a6c4 /types/ext
parent4873a8db20dd3d3efbf4611b455500b0b03efddf (diff)
Added Details and Summary tags to Structured Content (#842)
* add details and summary tags * fixed css test --------- Co-authored-by: martholomew <martholomew@users.noreply.github.com>
Diffstat (limited to 'types/ext')
-rw-r--r--types/ext/structured-content.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/types/ext/structured-content.d.ts b/types/ext/structured-content.d.ts
index 8ab459b6..253f0324 100644
--- a/types/ext/structured-content.d.ts
+++ b/types/ext/structured-content.d.ts
@@ -122,7 +122,7 @@ export type TableElement = {
};
export type StyledElement = {
- tag: 'span' | 'div' | 'ol' | 'ul' | 'li';
+ tag: 'span' | 'div' | 'ol' | 'ul' | 'li' | 'details' | 'summary';
content?: Content;
data?: Data;
style?: StructuredContentStyle;