Skip to main content

Built and signed on GitHub Actions

⚖️ Minimalist diffing.

This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
This package works with Cloudflare Workers
This package works with Node.js
This package works with Deno
This package works with Bun
This package works with Browsers
JSR Score
100%
Published
2 months ago (0.3.3)
Package root>WithPropertyPath.ts
/** * Object with an optional `path` property. * * This `path` is an `IterableIterator` of `PropertyKey`s. */ export type WithPropertyPath = { /** * Property path of created, deleted or updated property (undefined for * root). */ readonly path: IterableIterator<PropertyKey>; };