Skip to content

Commit

Permalink
[Svelte] Update build files
Browse files Browse the repository at this point in the history
  • Loading branch information
ChqThomas committed Oct 22, 2023
1 parent 0cc3bef commit cf7af6f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Svelte/assets/dist/loader.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import type { SvelteComponent } from 'svelte';
import { ComponentCollection } from './components.js';
declare global {
function resolveSvelteComponent(name: string): typeof SvelteComponent;
function resolveSvelteComponent(name: string): typeof SvelteComponent<any>;
interface Window {
resolveSvelteComponent(name: string): typeof SvelteComponent;
resolveSvelteComponent(name: string): typeof SvelteComponent<any>;
}
}
export declare function registerSvelteControllerComponents(svelteComponents?: ComponentCollection): void;
4 changes: 2 additions & 2 deletions src/Svelte/assets/dist/register_controller.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/// <reference types="webpack-env" />
import type { SvelteComponent } from 'svelte';
declare global {
function resolveSvelteComponent(name: string): typeof SvelteComponent;
function resolveSvelteComponent(name: string): typeof SvelteComponent<any>;
interface Window {
resolveSvelteComponent(name: string): typeof SvelteComponent;
resolveSvelteComponent(name: string): typeof SvelteComponent<any>;
}
}
export declare function registerSvelteControllerComponents(context: __WebpackModuleApi.RequireContext): void;

0 comments on commit cf7af6f

Please sign in to comment.