Interface ConnectorGlobalWebhookHandler

interface ConnectorGlobalWebhookHandler {
    key: string;
    methods: {
        handle: ConnectorMethodImplementation;
    };
}

Properties

Properties

key: string
methods: {
    handle: ConnectorMethodImplementation;
}