Options
All
  • Public
  • Public/Protected
  • All
Menu

This initializer simply writes the version number of the server to the storage. This will be relevant in the future when we look into migration initializers.

It automatically parses the version number from the package.json.

Hierarchy

Index

Constructors

Properties

storage: KeyValueStorage<string, string>
storageKey: string

Methods

  • canHandle(input: void): Promise<void>
  • Checks if the input can be handled by this class. If it cannot handle the input, rejects with an error explaining why.

    Parameters

    • input: void

      Input that could potentially be handled.

    Returns Promise<void>

    A promise resolving if the input can be handled, rejecting with an Error if not.

  • handle(): Promise<void>
  • handleSafe(input: void): Promise<void>