Skip to content
Snippets Groups Projects
Radio.d.ts 774 B
Newer Older
Glenn Vorhes's avatar
Glenn Vorhes committed
/**
 * Created by glenn on 6/12/2017.
 */
Glenn Vorhes's avatar
Glenn Vorhes committed
import React = require("react");
Glenn Vorhes's avatar
Glenn Vorhes committed
import 'jquery-ui';
export interface iRadioItem {
    groupId: string;
    text: string;
    checked: boolean;
    inline: boolean;
    change: (s: string) => any;
    connected?: boolean;
    index?: number;
}
export declare class Radio extends React.Component<{
    title: string;
    items: string[];
    callback: (val: string) => any;
    inline?: boolean;
    defaultValue: string;
    classes?: string[];
glennvorhes's avatar
glennvorhes committed
}, {}> {
Glenn Vorhes's avatar
Glenn Vorhes committed
    render(): JSX.Element;
}
export declare class RadioConnected extends React.Component<{
    title: string;
    items: string[];
    callback: (val: string) => any;
    inline?: boolean;
    selectedIndex: number;
    classes?: string[];
glennvorhes's avatar
glennvorhes committed
}, {}> {
Glenn Vorhes's avatar
Glenn Vorhes committed
    render(): JSX.Element;
}