mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-24 03:39:01 +08:00
fix(core): update the typings to be that options and storage are partials on an extended config #5852
This commit is contained in:
parent
4b2de3394a
commit
b3a6cb24a3
5
.changeset/fluffy-panthers-yell.md
Normal file
5
.changeset/fluffy-panthers-yell.md
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
"@tiptap/core": patch
|
||||
---
|
||||
|
||||
Update TypeScript types to allow options to be optional
|
@ -474,9 +474,9 @@ export class Extension<Options = any, Storage = any> {
|
||||
}
|
||||
|
||||
extend<ExtendedOptions = Options, ExtendedStorage = Storage>(
|
||||
extendedConfig: Partial<ExtensionConfig<ExtendedOptions, ExtendedStorage>> = {},
|
||||
extendedConfig: Partial<ExtensionConfig<Partial<ExtendedOptions>, Partial<ExtendedStorage>>> = {},
|
||||
) {
|
||||
const extension = new Extension<ExtendedOptions, ExtendedStorage>({ ...this.config, ...extendedConfig })
|
||||
const extension = new Extension<ExtendedOptions, ExtendedStorage>({ ...this.config, ...extendedConfig } as ExtensionConfig)
|
||||
|
||||
extension.parent = this
|
||||
|
||||
|
@ -606,9 +606,9 @@ export class Mark<Options = any, Storage = any> {
|
||||
}
|
||||
|
||||
extend<ExtendedOptions = Options, ExtendedStorage = Storage>(
|
||||
extendedConfig: Partial<MarkConfig<ExtendedOptions, ExtendedStorage>> = {},
|
||||
extendedConfig: Partial<MarkConfig<Partial<ExtendedOptions>, Partial<ExtendedStorage>>> = {},
|
||||
) {
|
||||
const extension = new Mark<ExtendedOptions, ExtendedStorage>(extendedConfig)
|
||||
const extension = new Mark<ExtendedOptions, ExtendedStorage>(extendedConfig as MarkConfig)
|
||||
|
||||
extension.parent = this
|
||||
|
||||
|
@ -816,9 +816,9 @@ export class Node<Options = any, Storage = any> {
|
||||
}
|
||||
|
||||
extend<ExtendedOptions = Options, ExtendedStorage = Storage>(
|
||||
extendedConfig: Partial<NodeConfig<ExtendedOptions, ExtendedStorage>> = {},
|
||||
extendedConfig: Partial<NodeConfig<Partial<ExtendedOptions>, Partial<ExtendedStorage>>> = {},
|
||||
) {
|
||||
const extension = new Node<ExtendedOptions, ExtendedStorage>(extendedConfig)
|
||||
const extension = new Node<ExtendedOptions, ExtendedStorage>(extendedConfig as NodeConfig)
|
||||
|
||||
extension.parent = this
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user