@likecoin/epub-ts 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/annotations.d.ts +0 -3
- package/dist/epub.cjs +3 -3
- package/dist/epub.cjs.map +1 -1
- package/dist/epub.js +5 -9
- package/dist/epub.js.map +1 -1
- package/dist/epub.node.cjs +2 -2
- package/dist/epub.node.cjs.map +1 -1
- package/dist/epub.node.js +38 -43
- package/dist/epub.node.js.map +1 -1
- package/dist/epub.umd.js +3 -3
- package/dist/epub.umd.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/managers/continuous/index.d.ts +2 -2
- package/dist/rendition.d.ts +1 -1
- package/package.json +1 -1
package/dist/annotations.d.ts
CHANGED
|
@@ -92,12 +92,10 @@ declare class Annotations {
|
|
|
92
92
|
clear(view: AnnotationView): void;
|
|
93
93
|
/**
|
|
94
94
|
* [Not Implemented] Show annotations
|
|
95
|
-
* @TODO: needs implementation in View
|
|
96
95
|
*/
|
|
97
96
|
show(): void;
|
|
98
97
|
/**
|
|
99
98
|
* [Not Implemented] Hide annotations
|
|
100
|
-
* @TODO: needs implementation in View
|
|
101
99
|
*/
|
|
102
100
|
hide(): void;
|
|
103
101
|
}
|
|
@@ -156,7 +154,6 @@ declare class Annotation implements IEventEmitter<AnnotationEvents> {
|
|
|
156
154
|
detach(view: AnnotationView): void;
|
|
157
155
|
/**
|
|
158
156
|
* [Not Implemented] Get text of an annotation
|
|
159
|
-
* @TODO: needs implementation in contents
|
|
160
157
|
*/
|
|
161
158
|
text(): void;
|
|
162
159
|
}
|