@connectycube/chat-widget
Version:
A customizable React chat widget built on the ConnectyCube platform, enabling real-time messaging, calls, and user engagement in any web app.
10 lines • 392 B
TypeScript
import * as React from 'react';
export interface LastActivityProps extends React.ComponentProps<'span'> {
seconds?: number;
language?: string;
text?: string;
onlineText?: string;
}
declare const LastActivity: React.NamedExoticComponent<Omit<LastActivityProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
export { LastActivity };
//# sourceMappingURL=last-activity.d.ts.map