@hmiproject/helio-sdk
    Preparing search index...

    Type Alias PropsSchema<BaseSchema>

    type PropsSchema<BaseSchema extends SchemaDef = SchemaDef> = {
        current: BaseSchema;
        migrations: ReadonlyArray<Migration>;
        migrate<ToSchema extends SchemaDef>(
            nextSchema: ToSchema,
            migrationFn: MigrationFn<BaseSchema, ToSchema>,
        ): PropsSchema<ToSchema>;
    }

    Type Parameters

    Index

    Properties

    Methods

    Properties

    current: BaseSchema
    migrations: ReadonlyArray<Migration>

    Methods