ispt4.0_laravel/node_modules/laravel-echo/dist/util/event-formatter.d.ts
2025-03-12 12:02:15 +00:00

19 lines
377 B
TypeScript
Executable File

/**
* Event name formatter
*/
export declare class EventFormatter {
private namespace;
/**
* Create a new class instance.
*/
constructor(namespace: string | boolean);
/**
* Format the given event name.
*/
format(event: string): string;
/**
* Set the event namespace.
*/
setNamespace(value: string | boolean): void;
}