FestinHegre/vendor/symfony/stimulus-bundle/assets/dist/controllers.d.ts
2024-09-26 17:26:04 +02:00

13 lines
466 B
TypeScript

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;