Files

7 lines
136 B
JavaScript
Raw Permalink Normal View History

2026-03-22 20:00:13 +00:00
import { parseAnyDef } from "./any.js";
export function parseUndefinedDef(refs) {
return {
not: parseAnyDef(refs),
};
}