Standard interface for objects that have a primary task that may initiate after construction.

interface Startable {
    start(): void;
}

Methods

Methods