configure.d.ts 271 B

123456789
  1. /**
  2. * @param {State} base
  3. * @param {Options} extension
  4. * @returns {State}
  5. */
  6. export function configure(base: State, extension: Options): State;
  7. import type { State } from './types.js';
  8. import type { Options } from './types.js';
  9. //# sourceMappingURL=configure.d.ts.map