blob: 3be85bb70ff542fded39d5c674296210140566ff [file]
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
//
// API docs from [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web).
// Attributions and copyright licensing by Mozilla Contributors is licensed
// under [CC-BY-SA 2.5](https://creativecommons.org/licenses/by-sa/2.5/.
// Generated from Web IDL definitions.
@JS()
library;
import 'dart:js_interop';
import 'dom.dart';
import 'html.dart';
import 'svg.dart';
/// The **`TimeEvent`** interface, a part of
/// [SVG SMIL](https://developer.mozilla.org/en-US/docs/Web/SVG/SVG_animation_with_SMIL)
/// animation, provides specific contextual information associated with Time
/// events.
///
/// ---
///
/// API documentation sourced from
/// [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/TimeEvent).
extension type TimeEvent._(JSObject _) implements Event, JSObject {
external void initTimeEvent(
String typeArg,
Window? viewArg,
int detailArg,
);
external Window? get view;
external int get detail;
}
/// The **`SVGAnimationElement`** interface is the base interface for all of the
/// animation element interfaces: [SVGAnimateElement], [SVGSetElement],
/// [SVGAnimateColorElement], [SVGAnimateMotionElement] and
/// [SVGAnimateTransformElement].
///
/// ---
///
/// API documentation sourced from
/// [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimationElement).
extension type SVGAnimationElement._(JSObject _)
implements SVGElement, JSObject {
external double getStartTime();
external double getCurrentTime();
external double getSimpleDuration();
external void beginElement();
external void beginElementAt(num offset);
external void endElement();
external void endElementAt(num offset);
/// The **`SVGAnimationElement.targetElement`** property refers to
/// the element which is being animated. If no target element is being
/// animated (for
/// example, because the `href` attribute specifies an unknown element), the
/// value returned is `null`.
external SVGElement? get targetElement;
external EventHandler get onend;
external set onend(EventHandler value);
external SVGStringList get requiredExtensions;
external SVGStringList get systemLanguage;
}
/// The **`SVGAnimateElement`** interface corresponds to the element.
///
/// ---
///
/// API documentation sourced from
/// [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateElement).
extension type SVGAnimateElement._(JSObject _)
implements SVGAnimationElement, JSObject {
/// Creates an [SVGAnimateElement] using the tag 'animate'.
SVGAnimateElement()
: _ = document.createElementNS(
'http://www.w3.org/2000/svg',
'animate',
);
}
/// The **`SVGSetElement`** interface corresponds to the element.
///
/// ---
///
/// API documentation sourced from
/// [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/SVGSetElement).
extension type SVGSetElement._(JSObject _)
implements SVGAnimationElement, JSObject {
/// Creates an [SVGSetElement] using the tag 'set'.
SVGSetElement()
: _ = document.createElementNS(
'http://www.w3.org/2000/svg',
'set',
);
}
/// The **`SVGAnimateMotionElement`** interface corresponds to the element.
///
/// ---
///
/// API documentation sourced from
/// [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateMotionElement).
extension type SVGAnimateMotionElement._(JSObject _)
implements SVGAnimationElement, JSObject {
/// Creates an [SVGAnimateMotionElement] using the tag 'animateMotion'.
SVGAnimateMotionElement()
: _ = document.createElementNS(
'http://www.w3.org/2000/svg',
'animateMotion',
);
}
/// The **`SVGMPathElement`** interface corresponds to the element.
///
/// ---
///
/// API documentation sourced from
/// [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/SVGMPathElement).
extension type SVGMPathElement._(JSObject _) implements SVGElement, JSObject {
/// Creates an [SVGMPathElement] using the tag 'mpath'.
SVGMPathElement()
: _ = document.createElementNS(
'http://www.w3.org/2000/svg',
'mpath',
);
external SVGAnimatedString get href;
}
/// The `SVGAnimateTransformElement` interface corresponds to the element.
///
/// ---
///
/// API documentation sourced from
/// [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateTransformElement).
extension type SVGAnimateTransformElement._(JSObject _)
implements SVGAnimationElement, JSObject {
/// Creates an [SVGAnimateTransformElement] using the tag 'animateTransform'.
SVGAnimateTransformElement()
: _ = document.createElementNS(
'http://www.w3.org/2000/svg',
'animateTransform',
);
}