UNPKG
@styn/plugin-breakpoints
Version:
latest (0.1.1)
0.1.1
Create breakpoints to use in your styn styles
github.com/renatorib/styn
renatorib/styn
@styn/plugin-breakpoints
/
dist
/
types
/
plugin-breakpoints
/
src
/
breakpoints.d.ts
7 lines
(6 loc)
•
217 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
StynPlugin
}
from
"styn"
;
declare
type
ScreensList
= { [
screen
:
string
]:
string
; };
export
declare
const
breakpoints
:
(
screens
:
ScreensList
,
template
?: (size:
string
) =>
string
) =>
StynPlugin
;
export
{};