use global namespace

This commit is contained in:
Philipp Kühn
2020-11-16 15:40:05 +01:00
parent 3a6479eeca
commit 24c3a9abd3
39 changed files with 243 additions and 138 deletions

View File

@@ -83,8 +83,10 @@ const Heading = Node.create({
export default Heading
declare module '@tiptap/core' {
interface AllExtensions {
Heading: typeof Heading,
declare global {
namespace Tiptap {
interface AllExtensions {
Heading: typeof Heading,
}
}
}