UNPKG
@isotope/prototope
Version:
latest (0.2.1)
0.2.1
0.2.0
0.1.1
Isotope-based JavaScript library for speedy UI prototyping
areknawo.com/prototope
Isotope-js/isotope
@isotope/prototope
/
lib
/
utils
/
effects
/
opacity.d.ts
11 lines
(10 loc)
•
259 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
Util
}
from
"../../declarations"
;
declare
type
Opacity
=
0
|
25
|
50
|
75
|
100
;
/** * Prototope opacity util. * *
@param
value
- Config value. *
@returns
- Prototope util. */
declare
const
opacity
:
(
value
:
Opacity
) =>
Util
;
export
{ opacity };