index.d.ts 313 B

12345678910111213
  1. /**
  2. * `json-pointer`
  3. *
  4. * Implements helper functions for [JSON Pointer (RFC 6901)](https://tools.ietf.org/html/rfc6901) specification.
  5. *
  6. * @module
  7. */
  8. export * from './types';
  9. export * from './util';
  10. export * from './validate';
  11. export * from './get';
  12. export * from './find';
  13. export * from './findByPointer';