A11 TypeScript API - v0.2.1
    Preparing search index...

    Interface ActionPortSchemaOptions

    Declarative input/output port fields accepted by ActionPortSchema.

    interface ActionPortSchemaOptions {
        autofills?: readonly (NodeFragment | null)[];
        description?: string;
        name: string;
        required?: boolean;
        type: string;
        unary?: boolean;
    }
    Index
    autofills?: readonly (NodeFragment | null)[]

    Default input fragments; an autofilled input must otherwise be empty.

    description?: string

    Developer/model-facing explanation of what the port carries.

    name: string

    Port name used by handlers and on the wire.

    required?: boolean

    Whether callers must provide the port.

    type: string

    Application type or MIME-facing type description.

    unary?: boolean

    Whether the port represents one whole value rather than a stream.