UNPKG

@pretronic/react-github-languages

Version:
17 lines (16 loc) 455 B
import { PureComponent } from "react"; import { Language } from "./Language"; interface MessageProps { name: any; variables?: any; default?: string; } interface MessageState { } export default class Message extends PureComponent<MessageProps, MessageState> { static contextType: import("react").Context<import("./Language").LanguageInfo>; getLanguage(): Language; getMessage(): any; render(): any; } export {};