// Generated by dts-bundle v0.7.3 declare module 'pitched-widget-standard' { import Widget from 'pitched-widget-standard/Widget'; export default Widget; } declare module 'pitched-widget-standard/Widget' { export default class PitchedWidgetStandard { static DEFAULTS: PitchedWidgetConfig; constructor(config: PitchedWidgetConfig); setColor(color: string): void; setAdultsLabel(val: string): void; setTeenagersLabel(val: string): void; setChildrenLabel(val: string): void; setInfantsLabel(val: string): void; setPetsLabel(val: string): void; setButtonLabel(val: string): void; setCollapsed(val: boolean): void; } /** * Define typescript type for widget config object */ type PitchedWidgetConfig = { 'bookingURL': string; 'key': string; 'appendTo': string; 'color': string; 'adultsLabel': string; 'teenagersLabel': string; 'childrenLabel': string; 'infantsLabel': string; 'petsLabel': string; 'buttonLabel': string; 'collapsed': boolean; 'minDate': Date; 'daysOffset': number; 'disabledDaysOfWeek': Array; 'openResultsInNewTab': boolean; }; export {}; }