Class FVTTSidebarPopout
Hierarchy
- SvelteComponent<
FVTTSidebarPopout.Props,
FVTTSidebarPopout.Events,
FVTTSidebarPopout.Slots,
>- FVTTSidebarPopout (View Summary)
Indexable
- [prop: string]: any
Index
Constructors
constructor
- new FVTTSidebarPopout(
options: ComponentConstructorOptions<FVTTSidebarPopout.Props>,
): FVTTSidebarPopout Parameters
Returns FVTTSidebarPopout
Accessors
component
elementRoot
- get elementRoot(): any
Getter for elementRoot prop.
Returns any
- set elementRoot(_: any): void
Setter for elementRoot prop.
Parameters
- _: any
Returns void
sidebarData
- get sidebarData(): any
Getter for sidebarData prop.
Returns any
- set sidebarData(_: any): void
Setter for sidebarData prop.
Parameters
- _: any
Returns void
Methods
$destroy
$on
- $on<K extends string>(
type: K,
callback: (e: CustomEvent<any>) => void,
): () => void Type Parameters
Parameters
- type: K
- callback: (e: CustomEvent<any>) => void
Returns () => void
$set
- $set(props: Partial<FVTTSidebarPopout.Props>): void
Parameters
- props: Partial<FVTTSidebarPopout.Props>
Returns void
Base class for Svelte components with some minor dev-enhancements. Used when dev=true.
Can be used to create strongly typed Svelte components.
Example:
You have component library on npm called
component-library
, from which you export a component calledMyComponent
. For Svelte+TypeScript users, you want to provide typings. Therefore you create aindex.d.ts
:Typing this makes it possible for IDEs like VS Code with the Svelte extension to provide intellisense and to use the component like this in a Svelte file with TypeScript: