interface Pluggable<Input, Output> {
    applyToStack: ((stack) => void);
}

Type Parameters

  • Input extends object

  • Output extends object

Hierarchy (view full)

Properties

Properties

applyToStack: ((stack) => void)

A function that mutate the passed in middleware stack. Functions implementing this interface can add, remove, modify existing middleware stack from clients or commands

Type declaration

    • (stack): void
    • A function that mutate the passed in middleware stack. Functions implementing this interface can add, remove, modify existing middleware stack from clients or commands

      Parameters

      Returns void