From b4f2be332bd413daecdcde97968eee9e4f8b267b Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 12 Jul 2025 19:22:11 +0300 Subject: [PATCH] chore(ckeditor5-footnotes): fix references: Schema -> ModelSchema --- packages/ckeditor5-footnotes/src/footnote-editing/schema.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ckeditor5-footnotes/src/footnote-editing/schema.ts b/packages/ckeditor5-footnotes/src/footnote-editing/schema.ts index 004914571..b26f8ec2c 100644 --- a/packages/ckeditor5-footnotes/src/footnote-editing/schema.ts +++ b/packages/ckeditor5-footnotes/src/footnote-editing/schema.ts @@ -1,5 +1,5 @@ // eslint-disable-next-line no-restricted-imports -import { Schema } from 'ckeditor5'; +import { ModelSchema } from 'ckeditor5'; import { ATTRIBUTES, ELEMENTS } from '../constants.js'; /** @@ -7,7 +7,7 @@ import { ATTRIBUTES, ELEMENTS } from '../constants.js'; * See here for the meanings of each rule: * https://ckeditor.com/docs/ckeditor5/latest/api/module_engine_model_schema-SchemaItemDefinition.html#member-isObject */ -export const defineSchema = ( schema: Schema ): void => { +export const defineSchema = ( schema: ModelSchema ): void => { /** * Footnote section at the footer of the document. */