@arcmantle/lit-jsx
    Preparing search index...

    Interface AnimationTimingSVGAttributes

    interface AnimationTimingSVGAttributes {
        begin?:
            | string
            | typeof nothing
            | ((flag: void) => string | typeof nothing);
        dur?: string | typeof nothing | ((flag: void) => string | typeof nothing);
        end?: string | typeof nothing | ((flag: void) => string | typeof nothing);
        fill?:
            | typeof nothing
            | "remove"
            | "freeze"
            | ((flag: void) => typeof nothing | "remove" | "freeze");
        max?: string | typeof nothing | ((flag: void) => string | typeof nothing);
        min?: string | typeof nothing | ((flag: void) => string | typeof nothing);
        repeatCount?:
            | number
            | typeof nothing
            | "indefinite"
            | ((flag: void) => number | typeof nothing | "indefinite");
        repeatDur?:
            | string
            | typeof nothing
            | ((flag: void) => string | typeof nothing);
        restart?:
            | typeof nothing
            | "always"
            | "whenNotActive"
            | "never"
            | ((flag: void) => typeof nothing | "always" | "whenNotActive" | "never");
    }

    Hierarchy (View Summary)

    Index

    Properties

    begin?: string | typeof nothing | ((flag: void) => string | typeof nothing)
    dur?: string | typeof nothing | ((flag: void) => string | typeof nothing)
    end?: string | typeof nothing | ((flag: void) => string | typeof nothing)
    fill?:
        | typeof nothing
        | "remove"
        | "freeze"
        | ((flag: void) => typeof nothing | "remove" | "freeze")
    max?: string | typeof nothing | ((flag: void) => string | typeof nothing)
    min?: string | typeof nothing | ((flag: void) => string | typeof nothing)
    repeatCount?:
        | number
        | typeof nothing
        | "indefinite"
        | ((flag: void) => number | typeof nothing | "indefinite")
    repeatDur?: string | typeof nothing | ((flag: void) => string | typeof nothing)
    restart?:
        | typeof nothing
        | "always"
        | "whenNotActive"
        | "never"
        | ((flag: void) => typeof nothing | "always" | "whenNotActive" | "never")