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",