Trilium Frontend API
    Preparing search index...

    Interface SVGAnimatedString

    The SVGAnimatedString interface represents string attributes which can be animated from each SVG declaration. You need to create SVG attribute before doing anything else, everything should be declared inside this.

    MDN Reference

    interface SVGAnimatedString {
        animVal: string;
        baseVal: string;
    }
    Index

    Properties

    Properties

    animVal: string

    The animVal read-only property of the SVGAnimatedString interface is a string representing the animated value of the reflected attribute.

    MDN Reference

    baseVal: string

    The baseVal property of the SVGAnimatedString interface gets or sets the base value of the given attribute.

    MDN Reference