UNPKG

easemob-chat-uikit

Version:

![Static Badge](https://img.shields.io/badge/platform-React-green) ![Static Badge](https://img.shields.io/badge/language-typescript-green) ![GitHub commit activity](https://img.shields.io/github/commit-activity/y/easemob/Easemob-UIKit-web) ![GitHub last c

63 lines (47 loc) 1.11 kB
/// <reference types="node" /> /// <reference types="react" /> /// <reference types="react-dom" /> declare namespace NodeJS { interface ProcessEnv { readonly NODE_ENV: 'development' | 'production' | 'test'; readonly PUBLIC_URL: string; } } declare module '*.avif' { const src: string; } declare module '*.bmp' { const src: string; } declare module '*.gif' { const src: string; } declare module '*.jpg' { const src: string; } declare module '*.jpeg' { const src: string; } declare module '*.png' { const src: string; } declare module '*.webp' { const src: string; } declare module '*.svg' { import * as React from 'react'; // export const ReactComponent: React.FunctionComponent< // React.SVGProps<SVGSVGElement> & { title?: string } // >; const src: string; } declare module '*.module.css' { const classes: { readonly [key: string]: string }; } declare module '*.module.scss' { const classes: { readonly [key: string]: string }; } declare module '*.module.sass' { const classes: { readonly [key: string]: string }; } declare module 'react-sticky';