We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fb6756 commit 9d21067Copy full SHA for 9d21067
src/GalleryComponent.ts
@@ -0,0 +1,9 @@
1
+import { Gallery } from './Gallery';
2
+
3
+interface GalleryComponent {
4
+ init(gallery: Gallery): void;
5
+};
6
7
+export {
8
+ GalleryComponent
9
+}
src/NavigationButtons.ts
@@ -0,0 +1,4 @@
+import { GalleryComponent } from './GalleryComponent';
src/index.ts
@@ -1,5 +1,11 @@
import { Gallery } from './Gallery';
+export default Gallery;
export {
- Gallery
+ Gallery,
+ //TODO Thumbnail
10
+ //
11
};
0 commit comments