Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SVGComponentTransferFunctionElement

A base interface used by the component transfer function interfaces.

interface SVGComponentTransferFunctionElement extends SVGElement {
readonly amplitude: SVGAnimatedNumber;
readonly exponent: SVGAnimatedNumber;
readonly intercept: SVGAnimatedNumber;
readonly offset: SVGAnimatedNumber;
readonly slope: SVGAnimatedNumber;
readonly SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE: number;
readonly SVG_FECOMPONENTTRANSFER_TYPE_GAMMA: number;
readonly SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: number;
readonly SVG_FECOMPONENTTRANSFER_TYPE_LINEAR: number;
readonly SVG_FECOMPONENTTRANSFER_TYPE_TABLE: number;
readonly SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: number;
readonly tableValues: SVGAnimatedNumberList;
readonly type: SVGAnimatedEnumeration;
addEventListener<K extends keyof SVGElementEventMap>(
type: K,
options?: boolean | AddEventListenerOptions,
): void;
addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void;
removeEventListener<K extends keyof SVGElementEventMap>(
type: K,
options?: boolean | EventListenerOptions,
): void;
removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void;
}
var SVGComponentTransferFunctionElement: {
readonly SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE: number;
readonly SVG_FECOMPONENTTRANSFER_TYPE_GAMMA: number;
readonly SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: number;
readonly SVG_FECOMPONENTTRANSFER_TYPE_LINEAR: number;
readonly SVG_FECOMPONENTTRANSFER_TYPE_TABLE: number;
readonly SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: number;
}
;

§Extends

§Properties

§
readonly amplitude: SVGAnimatedNumber
[src]
§
readonly exponent: SVGAnimatedNumber
[src]
§
readonly intercept: SVGAnimatedNumber
[src]
§
readonly offset: SVGAnimatedNumber
[src]
§
readonly slope: SVGAnimatedNumber
[src]
§
readonly SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE: number
[src]
§
readonly SVG_FECOMPONENTTRANSFER_TYPE_GAMMA: number
[src]
§
readonly SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: number
[src]
§
readonly SVG_FECOMPONENTTRANSFER_TYPE_LINEAR: number
[src]
§
readonly SVG_FECOMPONENTTRANSFER_TYPE_TABLE: number
[src]
§
readonly SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: number
[src]
§
readonly tableValues: SVGAnimatedNumberList
[src]

§Methods

§
addEventListener<K extends keyof SVGElementEventMap>(
type: K,
options?: boolean | AddEventListenerOptions,
): void
[src]
§
addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void
[src]
§
removeEventListener<K extends keyof SVGElementEventMap>(
type: K,
options?: boolean | EventListenerOptions,
): void
[src]
§
removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void
[src]