reset-build-conditionals.d.ts 595 B

123456789101112
  1. import type * as d from '@stencil/core/internal';
  2. /**
  3. * Reset build conditionals used for testing to a known "good state".
  4. *
  5. * This function does not return a value, but rather mutates its argument in place.
  6. * Certain values are set to `true` or `false` for testing purpose (see this function's implementation for the full
  7. * list). Build conditional options _not_ in that list that are set to `true` when this function is invoked will remain
  8. * set to `true`.
  9. *
  10. * @param b the build conditionals to reset.
  11. */
  12. export declare function resetBuildConditionals(b: d.BuildConditionals): void;