UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

17 lines (16 loc) 509 B
/// <reference types="react" /> import * as React from 'react'; export interface INumberTextFieldProps { label: string; initialValue: string; } export interface INumberTextFieldState { value: string; } export declare class NumberTextField extends React.Component<INumberTextFieldProps, INumberTextFieldState> { constructor(props: INumberTextFieldProps); render(): JSX.Element; private _validateNumber(value); private _onChange(ev, value); private _restore(); }