11 lines
332 B
TypeScript
11 lines
332 B
TypeScript
import { ReactImageGalleryItem } from 'react-image-gallery';
|
|
const {gallery} = window.globalThis as any;
|
|
console.log(gallery);
|
|
|
|
const {gallery2} = window.globalThis as any;
|
|
console.log(gallery2);
|
|
|
|
export const imageGalleryItems: ReactImageGalleryItem[] = gallery;
|
|
export const {photos} = gallery2;
|
|
export const {videos} = gallery2;
|