Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 367 Bytes

File metadata and controls

18 lines (13 loc) · 367 Bytes

react-native-app-helpers/MigratableState

Represents data which can have migrations ran against it.

Usage

import type { MigratableState } from "react-native-app-helpers";

type ExampleData = {
  readonly exampleKey: 'exampleValue';
};

const example: MigratableState<ExampleData> = {
  exampleKey: 'exampleValue',
  executedMigrationUuids: [],
};