UNPKG

abowire

Version:

This is the official **Abowire Javascript SDK**, which makes it easy to connect to the Abowire **GraphQL API** and includes all the required dependencies you need.

8 lines (7 loc) 231 B
type ModalConfig = { onShow: (modalContent: Element | null) => void; onClose: () => void; }; export declare function initModal({ onShow, onClose }: ModalConfig): void; export declare function closeModal(): void; export {};