Type Alias NullableForeignKey<T>

NullableForeignKey: Optional<
    Brand<string, { entity: T; kind: "NullableForeignKey" }>,
>

A branded string type to represent nullable foreign keys in DynamoDB tables, which can also be undefined.

Type Parameters