@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
23 lines (22 loc) • 520 B
TypeScript
import * as React from "react";
export interface IFormatPreset {
name: string;
localIdentifier: string;
format: string;
previewNumber: number;
shortFormat?: string;
type?: PresetType;
}
export declare enum PresetType {
CUSTOM_FORMAT = "customFormat"
}
export interface IToggleButtonProps {
text: string;
isOpened: boolean;
toggleDropdown: (e: React.SyntheticEvent) => void;
}
export interface IFormatTemplate {
localIdentifier: string;
format: string;
name: string;
}