external.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. "use strict";
  2. // Copyright 2014 United States Government, as represented by the Secretary of Defense, Under
  3. // Secretary of Defense (Personnel & Readiness).
  4. //
  5. // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
  6. // in compliance with the License. You may obtain a copy of the License at
  7. //
  8. // http://www.apache.org/licenses/LICENSE-2.0
  9. //
  10. // Unless required by applicable law or agreed to in writing, software distributed under the License
  11. // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
  12. // or implied. See the License for the specific language governing permissions and limitations under
  13. // the License.
  14. // References to external documents to be used by other parts of the documentation.
  15. /// @external Window
  16. /// @see {@link https://developer.mozilla.org/en-US/docs/Web/API/Window}
  17. /// @function external:Window#requestAnimationFrame
  18. /// @see {@link https://developer.mozilla.org/en-US/docs/Web/API/Window.requestAnimationFrame}
  19. /// @external WindowTimers
  20. /// @see {@link https://developer.mozilla.org/en-US/docs/Web/API/WindowTimers}
  21. /// @function external:WindowTimers#clearInterval
  22. /// @see {@link https://developer.mozilla.org/en-US/docs/Web/API/WindowTimers.clearInterval}
  23. /// @function external:WindowTimers#clearTimeout
  24. /// @see {@link https://developer.mozilla.org/en-US/docs/Web/API/WindowTimers.clearTimeout}
  25. /// @function external:WindowTimers#setInterval
  26. /// @see {@link https://developer.mozilla.org/en-US/docs/Web/API/WindowTimers.setInterval}
  27. /// @function external:WindowTimers#setTimeout
  28. /// @see {@link https://developer.mozilla.org/en-US/docs/Web/API/WindowTimers.setTimeout}