superdesk/superdesk-client-core

View on GitHub
scripts/superdesk-interfaces/Destination.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface IDestination {
    name: string;
    delivery_type: 'email' | string;
    format: 'ninjs' | string;
    config?: {
        recipients: string;
    };
    preview_endpoint_url?: string;
}