///
import { Cell, cell, ComparableCell } from "commontools";
export default function TestCellOfNoValue() {
// Cell.of with type argument but no value - should become Cell.of(undefined, schema)
const _c1 = Cell.of();
const _c2 = Cell.of();
const _c3 = Cell.of();
// cell() with type argument but no value - should become cell(undefined, schema)
const _c4 = cell();
// ComparableCell.of with type argument but no value
const _c5 = ComparableCell.of<{ name: string }>();
// Mixed - some with value, some without
const _c6 = Cell.of("hello"); // has value
const _c7 = Cell.of(); // no value
return null;
}