Provides a mechanism to retrieve and query mounted Svelte application shell.

interface Svelte<Options extends SvelteApp.Options> {
    get applicationShell(): AppShell<Options>;
    get appShell(): AppShell<Options>;
}

Type Parameters

Accessors

  • get applicationShell(): AppShell<Options>
  • Returns mounted application shell Svelte component.

    Returns AppShell<Options>

    Any mounted application shell.

    Use Svelte.appShell; since 0.2.0 removal in 0.5.0.

  • get appShell(): AppShell<Options>
  • Returns mounted application shell Svelte component.

    Returns AppShell<Options>

    Any mounted application shell.