Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hoavmavada committed Oct 2, 2024
1 parent 9426ea4 commit c8b4d3f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
2 changes: 1 addition & 1 deletion packages/quill/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hoavm-quill",
"version": "2.0.2-alpha1.18",
"version": "2.0.2-alpha1.20",
"description": "Your powerful, rich text editor",
"author": "Jason Chen <[email protected]>",
"homepage": "https://quilljs.com",
Expand Down
13 changes: 3 additions & 10 deletions packages/quill/src/quill.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Quill from './core.js';
import Quill, { Parchment, Range } from './core.js';
import type {
Bounds,
DebugLevel,
Expand Down Expand Up @@ -117,21 +117,14 @@ Quill.register(
true,
);

export {
AttributeMap,
Delta,
Module,
Op,
OpIterator,
Parchment,
Range,
} from './core.js';
export { Module } from './core.js';
export type {
Bounds,
DebugLevel,
EmitterSource,
ExpandedQuillOptions,
QuillOptions,
};
export { Parchment, Range };

export default Quill;
3 changes: 2 additions & 1 deletion packages/quill/test/types/quill.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { assertType, expectTypeOf } from 'vitest';
import Quill, { Delta } from '../../src/quill.js';
import Quill from '../../src/quill.js';
import type { EmitterSource, Parchment, Range } from '../../src/quill.js';
import Delta from 'quill-delta';
import type { default as Block, BlockEmbed } from '../../src/blots/block.js';
import SnowTheme from '../../src/themes/snow.js';
import { LeafBlot } from 'parchment';
Expand Down

0 comments on commit c8b4d3f

Please sign in to comment.