UNPKG

adaptivecards-react

Version:

React.js Adaptive Cards Javascript library for HTML Clients

13 lines (12 loc) 473 B
import React, { FC } from 'react'; import { Props } from './adaptive-card'; interface HostConfig { hostConfig: object; } export declare const HostConfigContext: React.Context<HostConfig>; export declare type PropsWithoutHostConfig = Omit<Props, 'hostConfig'>; export declare const AdaptiveCardUsingHostConfigContext: (props: PropsWithoutHostConfig) => JSX.Element; export declare const ProvidesHostConfigContext: FC<{ hostConfig: object; }>; export {};