converse.js
Version:
Browser based XMPP chat client
10 lines • 406 B
TypeScript
import { AdHocCommand, AdHocCommandResult } from '@converse/headless/plugins/adhoc/types';
export type AdHocUIProps = {
instructions: string;
jid: string;
alert?: string;
alert_type: 'danger' | 'primary';
name: 'cancel' | 'complete' | 'execute' | 'next' | 'prev';
};
export type AdHocCommandUIProps = AdHocCommand & AdHocCommandResult & AdHocUIProps;
//# sourceMappingURL=types.d.ts.map