UNPKG
@styn/plugin-tokenizer
Version:
latest (0.1.1)
0.1.1
Create tokens to use in your styn styles
github.com/renatorib/styn
renatorib/styn
@styn/plugin-tokenizer
/
dist
/
types
/
plugin-tokenizer
/
src
/
tokenizer.d.ts
7 lines
(6 loc)
•
193 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
StynPlugin
}
from
"styn"
;
declare
type
TokenList
= { [
token
:
string
]:
string
|
number
|
TokenList
; };
export
declare
const
tokenizer
:
(
tokens
:
TokenList
) =>
StynPlugin
;
export
{};