Type Alias NormalizedHasManyOptions<SourceKey, TargetKey>

NormalizedHasManyOptions: NormalizeBaseAssociationOptions<
    Omit<HasManyOptions<SourceKey, TargetKey>, "inverse">,
> & {
    inverse?: Exclude<
        HasManyOptions<SourceKey, TargetKey>["inverse"],
        string,
    >;
}

Type Parameters

  • SourceKey extends string
  • TargetKey extends string