Added Statistics calculation
Statistics now show calculated values
This commit is contained in:
parent
fe87374e47
commit
fc0f69dacb
2147 changed files with 141321 additions and 39 deletions
29
node_modules/@mui/x-internals/EventManager/EventManager.d.ts
generated
vendored
Normal file
29
node_modules/@mui/x-internals/EventManager/EventManager.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
export type EventListener = (...args: any[]) => void;
|
||||
export interface EventListenerOptions {
|
||||
isFirst?: boolean;
|
||||
}
|
||||
interface EventListenerCollection {
|
||||
/**
|
||||
* List of listeners to run before the others
|
||||
* They are run in the opposite order of the registration order
|
||||
*/
|
||||
highPriority: Map<EventListener, true>;
|
||||
/**
|
||||
* List of events to run after the high priority listeners
|
||||
* They are run in the registration order
|
||||
*/
|
||||
regular: Map<EventListener, true>;
|
||||
}
|
||||
export declare class EventManager {
|
||||
maxListeners: number;
|
||||
warnOnce: boolean;
|
||||
events: {
|
||||
[eventName: string]: EventListenerCollection;
|
||||
};
|
||||
on(eventName: string, listener: EventListener, options?: EventListenerOptions): void;
|
||||
removeListener(eventName: string, listener: EventListener): void;
|
||||
removeAllListeners(): void;
|
||||
emit(eventName: string, ...args: any[]): void;
|
||||
once(eventName: string, listener: EventListener): void;
|
||||
}
|
||||
export {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue