merge.d.ts 374 B

123456789101112
  1. /**
  2. * @param {ReadonlyArray<Schema>} definitions
  3. * Definitions.
  4. * @param {Space | undefined} [space]
  5. * Space.
  6. * @returns {Schema}
  7. * Schema.
  8. */
  9. export function merge(definitions: ReadonlyArray<Schema>, space?: Space | undefined): Schema;
  10. import { Schema } from './schema.js';
  11. import type { Space } from 'property-information';
  12. //# sourceMappingURL=merge.d.ts.map