Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

gleam / test / project_path_deps / project_b / src / project_b.gleam
278 B 12 lines
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}