Files

7 lines
136 B
JavaScript
Raw Permalink Normal View History

2026-03-12 12:47:56 +08:00
import { parseAnyDef } from "./any.js";
export function parseUndefinedDef(refs) {
return {
not: parseAnyDef(refs),
};
}