版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

15 строки
416 B

  1. import HTMLScriptElement from './HTMLScriptElement';
  2. /**
  3. * Helper class for getting the URL relative to a Location object.
  4. */
  5. export default class ScriptUtility {
  6. /**
  7. * Returns a URL relative to the given Location object.
  8. *
  9. * @param options Options.
  10. * @param options.element Element.
  11. * @param element
  12. */
  13. static loadExternalScript(element: HTMLScriptElement): Promise<void>;
  14. }