@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
20 lines (19 loc) • 681 B
TypeScript
import * as React from "react";
import { WrappedComponentProps } from "react-intl";
export interface IConfigSubsectionProps {
valuePath?: string;
title: string;
canBeToggled?: boolean;
toggleDisabled?: boolean;
toggledOn?: boolean;
showDisabledMessage?: boolean;
properties?: any;
pushData?(data: any): void;
}
export interface IConfigSubsectionState {
disabled: boolean;
}
declare const _default: React.FunctionComponent<import("react-intl").WithIntlProps<IConfigSubsectionProps & WrappedComponentProps<"intl">>> & {
WrappedComponent: React.ComponentType<IConfigSubsectionProps & WrappedComponentProps<"intl">>;
};
export default _default;