Select the types of activity you want to include in your feed.
1// SPDX-License-Identifier: Apache-2.0 2// SPDX-FileCopyrightText: 2023 The Gleam contributors 3 4import project_d 5 6pub type TypeB { 7 ConstructorB(contained: project_d.TypeD, name: String) 8} 9 10pub fn new(contained, name) { 11 ConstructorB(project_d.ConstructorD(contained), name) 12}