6 lines
123 B
TypeScript
6 lines
123 B
TypeScript
import type { Value } from "../domain/value.ts";
|
|
|
|
export function readValue(): Value {
|
|
return { id: "fixture-value" };
|
|
}
|