Beignet API reference
    Preparing search index...

    Interface RuntimeManifest

    interface RuntimeManifest {
        listeners: readonly ListenerDef<
            EventDef<string, StandardSchema>,
            unknown,
            string,
        >[];
        outbox: {
            events: readonly EventPayloadDef<string, StandardSchema>[];
            jobs: readonly JobDef<string, StandardSchema, unknown>[];
        };
        schedules: readonly ScheduleDef<string, StandardSchema, unknown>[];
        tasks: readonly TaskDef<string, StandardSchema, unknown, unknown>[];
    }
    Index
    listeners: readonly ListenerDef<
        EventDef<string, StandardSchema>,
        unknown,
        string,
    >[]
    outbox: {
        events: readonly EventPayloadDef<string, StandardSchema>[];
        jobs: readonly JobDef<string, StandardSchema, unknown>[];
    }
    schedules: readonly ScheduleDef<string, StandardSchema, unknown>[]
    tasks: readonly TaskDef<string, StandardSchema, unknown, unknown>[]