Hyperlinkv0.8.0-beta.28

CustomQueueHyperlink

CustomQueueHyperlink.customQueueEntrySelectorconstsrc/CustomQueueHyperlink.ts:135
<Sch extends Schema.Top>(itemSchema: Sch): Schema.Struct<{
  readonly entryId: Schema.optionalKey<Schema.String>
  readonly key: Schema.optional<Schema.String>
  readonly item: Schema.optionalKey<Sch>
}>

Selector for custom-queue routing verbs.

wire schemas
export const customQueueEntrySelector = <Sch extends Schema.Top>(itemSchema: Sch) =>
  Schema.Struct({
    entryId: Schema.optionalKey(Schema.String),
    key: Schema.optional(Schema.String),
    item: Schema.optionalKey(itemSchema),
  });
Referenced by 1 symbols