FestinHegre/vendor/symfony/stimulus-bundle/assets/dist/controllers.d.ts

13 lines
466 B
TypeScript
Raw Normal View History

2024-09-26 17:26:04 +02:00
import type { ControllerConstructor } from '@hotwired/stimulus';
export interface EagerControllersCollection {
[key: string]: ControllerConstructor;
}
export interface LazyControllersCollection {
[key: string]: () => Promise<{
default: ControllerConstructor;
}>;
}
export declare const eagerControllers: EagerControllersCollection;
export declare const lazyControllers: LazyControllersCollection;
export declare const isApplicationDebug = false;