@c8y/ngx-components
Version:
Angular modules for Cumulocity IoT applications
12 lines • 364 B
TypeScript
import { MessagingSubscriber } from './subscriber';
import { MessagingTopicType } from './topicType';
/**
* Data necessary for deleting a subscriber.
*/
export type MessagingSubscriberToDelete = MessagingSubscriber & {
tenant: string;
namespace: string;
topic: string;
type: MessagingTopicType;
};
//# sourceMappingURL=subscriberToDelete.d.ts.map