UNPKG

@ribajs/bs5

Version:

Bootstrap 5 module for Riba.js

13 lines (12 loc) 332 B
export type ShareUrlType = "page" | "image" | "video"; export interface ShareItem { id: string; label: string; url: string; urlTemplate: string; filename?: string; mediaUrlTemplate?: string; type?: "download" | "popup" | "href" | "clipboard"; availableFor: ShareUrlType[]; available?: boolean; }