@aleph-sdk/monorepo
    Preparing search index...

    Interface MessageTypeMap<Content>

    Message types supported by Aleph Some message types come with a content field that can is of a generic type.

    interface MessageTypeMap<Content = any> {
        AGGREGATE: AggregateContent<Content>;
        FORGET: ForgetContent;
        INSTANCE: InstanceContent;
        POST: PostContent<Content>;
        PROGRAM: ProgramContent;
        STORE: StoreContent;
        [key: string]: MessageContent<any>;
    }

    Type Parameters

    • Content = any

    Indexable

    Index

    Properties

    INSTANCE: InstanceContent

    POST