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
/
components
/
theme-editor
/
entries
/
unknown-entry.svelte.d.ts
8 lines
(7 loc)
•
266 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
type
{
ThemeVariable
}
from
'../../../types.js'
;
interface
Props
{
variable
:
ThemeVariable
; }
declare
const
UnknownEntry
:
import
(
"svelte"
).
Component
<
Props
, {},
"variable"
>;
type
UnknownEntry
=
ReturnType
<
typeof
UnknownEntry
>;
export
default
UnknownEntry
;