@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
11 lines (10 loc) • 442 B
TypeScript
import * as React from "react";
import { WrappedComponentProps } from "react-intl";
interface IDocumentationLinkOwnProps {
url: string;
}
declare type IDocumentationLinkProps = IDocumentationLinkOwnProps & WrappedComponentProps;
declare const _default: React.FunctionComponent<import("react-intl").WithIntlProps<IDocumentationLinkProps>> & {
WrappedComponent: React.ComponentType<IDocumentationLinkProps>;
};
export default _default;