UNPKG
theme-editor-svelte
Version:
latest (1.0.0)
1.0.0
Universal theme editor for svelte
github.com/naziks/theme-editor-svelte
naziks/theme-editor-svelte
theme-editor-svelte
/
dist
/
types.d.ts
11 lines
(10 loc)
•
247 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
interface
CSSRuleExtended
extends
CSSRule
{
selectorText
:
string
;
style
:
CSSStyleDeclaration
; }
export
interface
ThemeVariable
{
variable
:
string
;
name
:
string
;
value
:
string
;
type
:
'color'
|
'number'
|
'unknown'
; }