@vonage/vivid-react
Version:
Vivid wrapped for easy React usage & IDE autocomplete support & typescript typings
21 lines (20 loc) • 692 B
TypeScript
import React, { ReactNode } from 'react';
import '@vonage/vwc-calendar';
/**
* @param {Date | undefined} datetime
* @param {string | string[] | undefined} locales
* @param {(e: Event) => CalendarEventContext | null} getEventContext
* @param {boolean | undefined} stickyHeader
*/
declare const VwcCalendar: (props: {
children?: ReactNode;
slot?: string | undefined;
id?: string | undefined;
style?: React.CSSProperties | undefined;
ref?: React.RefObject<HTMLDivElement> | ((instance: HTMLDivElement | null) => void) | null | undefined;
datetime?: any;
locales?: any;
getEventContext?: any;
stickyHeader?: any;
}) => JSX.Element;
export default VwcCalendar;