Represents data which can have migrations ran against it.
import type { MigratableState } from "react-native-app-helpers";
type ExampleData = {
readonly exampleKey: 'exampleValue';
};
const example: MigratableState<ExampleData> = {
exampleKey: 'exampleValue',
executedMigrationUuids: [],
};