UNPKG

airline-ccai-fulfillment-tools-test

Version:

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

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