UNPKG
gradient-utils
Version:
latest (0.1.0)
0.1.0
0.0.4
0.0.3
0.0.2
0.0.1
css and svg gradient utils
github.com/isergey87/gradient-utils
isergey87/gradient-utils
gradient-utils
/
convert-css-gradient-to-svg
/
convert-linear-gradient.d.ts
4 lines
(3 loc)
•
233 B
TypeScript
View Raw
1
2
3
4
import
type
{
LinearGradient
}
from
'../gradient-parser/types'
;
import
{
SVGLinearGradient
}
from
'./types'
;
export
declare
const
convertLinearGradient
:
(
cssGradient
:
LinearGradient
,
aspectRatio
:
number
) =>
SVGLinearGradient
|
null
;