UNPKG
@sveltestrap/sveltestrap
Version:
latest (7.1.0)
7.1.0
7.0.3
7.0.2
7.0.1
7.0.0
6.2.8
6.2.7
6.2.6
6.2.5
6.2.4
6.2.3
6.2.2
6.2.1
6.2.0
6.1.1
6.1.0
6.0.5
6.0.4
6.0.3
6.0.2
6.0.1
6.0.0
5.12.0
1.0.1
1.0.0
Bootstrap components for Svelte
sveltestrap.js.org
sveltestrap/sveltestrap
@sveltestrap/sveltestrap
/
src
/
Theme
/
Theme.d.ts
14 lines
(9 loc)
•
266 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{
SvelteComponent
}
from
'svelte'
;
export
interface
ThemeProps
{
theme
?:
string
; }
export
interface
ThemeEvents
{}
export
interface
ThemeSlots
{
default
: {}; }
export
default
class
Theme
extends
SvelteComponent
<
ThemeProps
,
ThemeEvents
,
ThemeSlots
> {}