UNPKG

pcom-isv-base

Version:

千叶ISV基础能力

14 lines (13 loc) 285 B
export interface ShareRule { host: string; } export interface ShareOption { title: string; image: string; text: string; url?: string; } export interface Index { (option: ShareOption): Promise<any>; } export default function (allowedHosts?: ShareRule[]): Index;