UNPKG

ygd

Version:

An enterprise-class UI design language and React-based implementation

27 lines (26 loc) 942 B
import * as React from 'react'; import * as PropTypes from 'prop-types'; export interface LocaleReceiverProps { componentName?: string; defaultLocale?: object | Function; children: (locale: object, localeCode?: string) => React.ReactElement<any>; } interface LocaleInterface { [key: string]: any; } export interface LocaleReceiverContext { antLocale?: LocaleInterface; } export default class LocaleReceiver extends React.Component<LocaleReceiverProps> { static defaultProps: { componentName: string; }; static contextTypes: { antLocale: PropTypes.Requireable<object>; }; context: LocaleReceiverContext; getLocale(): any; getLocaleCode(): any; render(): React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>; } export {};