Interface Behaviour

Source
Expand description

Interface representing a behaviour that can be registered with a Probot instance.

interface Behaviour {
    register(agent: Probot): void;
}

Methods§

Source§

register(agent: Probot): void

Registers the behaviour with the given Probot instance.