import type { Lix } from "./open-lix.js"; /** * Closes the lix. */ export async function closeLix(args: { lix: Pick }): Promise { await args.lix.db.destroy(); }