Table of contents

Public interface

Signature
interface LegacyMigration<Before = any, After = any> {}
Source

packages/store/src/lib/migrate.ts


Properties

down

Public propertysignature

Signature
down: (newState: After) => Before

up

Public propertysignature

Signature
up: (oldState: Before) => After

IdOfLegacyMigrations