UNPKG

twilio-ccai-fulfillment-tools

Version:

A collection of tools to assist in the creation of Twilio CCAI Integration cards via fulfillment scripts

13 lines (12 loc) 300 B
import { TMap, SIZES } from '../types'; interface IMapInput { position?: number; geolocation: { lat: number; lng: number; }; width?: SIZES; title?: string; } export declare const createMap: ({ geolocation, width, title, position, }: IMapInput) => TMap; export {};