From e9dd662d771d0bf30c22cd06d331d4064d31f8a2 Mon Sep 17 00:00:00 2001 From: Alec Gibson <12036746+alecgibson@users.noreply.github.com> Date: Wed, 17 Jul 2024 10:59:20 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=B7=EF=B8=8F=20Fix=20type=20definition?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.d.ts | 6 ++++-- package.json | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/index.d.ts b/index.d.ts index 2a7f460..2d7b544 100644 --- a/index.d.ts +++ b/index.d.ts @@ -1,9 +1,11 @@ declare module '@reedsy/rich-text' { - export * as Delta from '@reedsy/quill-delta'; - import sharedb from 'sharedb'; + import Delta from '@reedsy/quill-delta'; + import * as sharedb from 'sharedb'; export type Type = (typeof sharedb)['types']['map'][string]; + export {Delta}; + export const config: { serializedProperties: Record; }; diff --git a/package.json b/package.json index acb74cb..8c57aed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@reedsy/rich-text", - "version": "4.1.0-reedsy.4.1.0", + "version": "4.1.0-reedsy.4.1.1", "description": "OT type for rich text", "author": "Jason Chen ", "homepage": "https://github.com/ottypes/rich-text",