/** * Returns a string type that is not nullable. * * In some places in the code this type is also called `NullableToEmptyString`. */ export type NonNullableString = T extends null | undefined ? '' : T;