interface MyCell extends BrandedCell {} type OptionalCell = MyCell | undefined; type NullableCell = MyCell | null; interface SchemaRoot { maybeCell: OptionalCell; nullableCell: NullableCell; }