@yeger/vue-masonry-wall
Version:
Responsive masonry layout with SSR support and zero dependencies for Vue 3.
12 lines (11 loc) • 379 B
text/typescript
import { Plugin } from 'vue';
import { default as component } from './masonry-wall.mjs';
export type MasonryWallComponent = typeof component;
type MasonryWallPlugin = MasonryWallComponent & Plugin;
declare const MasonryWall: MasonryWallPlugin;
declare module 'vue' {
interface GlobalComponents {
MasonryWall: MasonryWallComponent;
}
}
export default MasonryWall;