itmar-block-packages
Version:
Common React components for WordPress custom blocks, now fully TypeScript-ready.
13 lines (12 loc) • 339 B
TypeScript
import Swiper from "swiper";
interface SwiperObject {
swiper_id: string;
relate_id: string | null;
is_thumbnail: boolean;
instance: Swiper;
}
/**
* スライダーブロックの初期化メイン関数
*/
export declare function slideBlockSwiperInit(swiperElement: HTMLElement | string): SwiperObject | null;
export {};