1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix inconsistent naming formats

This commit is contained in:
Bill Thornton 2024-10-17 01:23:38 -04:00
parent f9092e0678
commit fdccb5c915
7 changed files with 41 additions and 39 deletions

View file

@ -3,9 +3,9 @@ export interface Event {
type: string;
}
type callback = (e: Event, ...args: any[]) => void;
type Callback = (e: Event, ...args: any[]) => void;
function getCallbacks(obj: any, type: string): callback[] {
function getCallbacks(obj: any, type: string): Callback[] {
if (!obj) {
throw new Error('obj cannot be null!');
}
@ -23,13 +23,13 @@ function getCallbacks(obj: any, type: string): callback[] {
}
export default {
on(obj: any, type: string, fn: callback): void {
on(obj: any, type: string, fn: Callback): void {
const callbacks = getCallbacks(obj, type);
callbacks.push(fn);
},
off(obj: any, type: string, fn: callback): void {
off(obj: any, type: string, fn: Callback): void {
const callbacks = getCallbacks(obj, type);
const i = callbacks.indexOf(fn);