6de2455917
- Added GLOBAL_MARKETS_TITLE to all translation files - Updated footer with 12 markets (4 active + 8 upcoming) - Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi - Built and deployed to production - CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
20 lines
582 B
TypeScript
20 lines
582 B
TypeScript
import { CredentialListInstance } from "./chat/v2/credential";
|
|
import { ServiceListInstance } from "./chat/v2/service";
|
|
import { ChannelListInstance } from "./chat/v3/channel";
|
|
import ChatBase from "./ChatBase";
|
|
declare class Chat extends ChatBase {
|
|
/**
|
|
* @deprecated - Use v2.credentials instead
|
|
*/
|
|
get credentials(): CredentialListInstance;
|
|
/**
|
|
* @deprecated - Use v2.services instead
|
|
*/
|
|
get services(): ServiceListInstance;
|
|
/**
|
|
* @deprecated - Use v3.channels instead
|
|
*/
|
|
get channels(): ChannelListInstance;
|
|
}
|
|
export = Chat;
|