fix
This commit is contained in:
@@ -6,14 +6,14 @@ export interface DetailsSummaryOptions {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Node.create({
|
export default Node.create<DetailsSummaryOptions>({
|
||||||
name: 'detailsSummary',
|
name: 'detailsSummary',
|
||||||
|
|
||||||
content: 'inline*',
|
content: 'inline*',
|
||||||
|
|
||||||
// group: 'block',
|
// group: 'block',
|
||||||
|
|
||||||
defaultOptions: <DetailsSummaryOptions>{
|
defaultOptions: {
|
||||||
HTMLAttributes: {},
|
HTMLAttributes: {},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -6,14 +6,14 @@ export interface DetailsOptions {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Node.create({
|
export default Node.create<DetailsOptions>({
|
||||||
name: 'details',
|
name: 'details',
|
||||||
|
|
||||||
content: 'detailsSummary block+',
|
content: 'detailsSummary block+',
|
||||||
|
|
||||||
group: 'block',
|
group: 'block',
|
||||||
|
|
||||||
defaultOptions: <DetailsOptions>{
|
defaultOptions: {
|
||||||
HTMLAttributes: {},
|
HTMLAttributes: {},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user