UNPKG

@threlte/extras

Version:

Utilities, abstractions and plugins for your Threlte apps

10 lines (9 loc) 360 B
import type { GradientStop } from './types'; /** * applies `gradient` to `context` */ export declare const applyGradient: (context: OffscreenCanvasRenderingContext2D, gradient: CanvasGradient) => void; /** * adds each `stop` of `stops` to the gradient */ export declare const addStops: (gradient: CanvasGradient, stops?: GradientStop[]) => CanvasGradient;