Variable findMoreMenuActionsConst

findMoreMenuActions: {
    actor: {
        getMenuItems: ((track, collection) => ExecutableAction[]);
    };
    album: {
        getMenuItems: ((track, collection) => {
            execute: (() => void);
            icon: string;
            noAccessKey: boolean;
            order: number;
            title: (() => string);
            visible: (() => boolean);
        }[]);
    };
    albumArtist: {
        getMenuItems: ((track, collection) => ExecutableAction[]);
    };
    artist: {
        getMenuItems: ((track, collection) => ExecutableAction[]);
    };
    compFolder: {
        getMenuItems: ((track) => {
            execute: (() => void);
            icon: string;
            order: number;
            title: (() => string);
        }[]);
    };
    composer: {
        getMenuItems: ((track, collection) => ExecutableAction[]);
    };
    dbFolder: {
        getMenuItems: ((track, collection) => {
            execute: (() => void);
            icon: string;
            order: number;
            title: (() => string);
        }[]);
    };
    explorerFolder: {
        getMenuItems: ((track) => {
            execute: (() => void);
            icon: string;
            order: number;
            title: (() => string);
        }[]);
    };
    genre: {
        getMenuItems: ((track, collection) => ExecutableAction[]);
    };
    playlist: {
        getMenuItems: ((track) => {
            icon: string;
            order: number;
            submenu: ((params) => Promise<unknown>);
            title: (() => any);
            track: any;
        }[]);
    };
    title: {
        getMenuItems: ((track, collection) => {
            execute: (() => void);
            icon: string;
            noAccessKey: boolean;
            order: number;
            title: (() => string);
            visible: (() => boolean);
        }[]);
    };
    year: {
        getMenuItems: ((track, collection) => {
            execute: (() => void);
            icon: string;
            order: number;
            title: (() => string);
            visible: (() => boolean);
        }[]);
    };
} = ...

Type declaration

  • actor: {
        getMenuItems: ((track, collection) => ExecutableAction[]);
    }

    Undocumented

  • album: {
        getMenuItems: ((track, collection) => {
            execute: (() => void);
            icon: string;
            noAccessKey: boolean;
            order: number;
            title: (() => string);
            visible: (() => boolean);
        }[]);
    }

    Undocumented

    • getMenuItems: ((track, collection) => {
          execute: (() => void);
          icon: string;
          noAccessKey: boolean;
          order: number;
          title: (() => string);
          visible: (() => boolean);
      }[])

      Undocumented

        • (track, collection): {
              execute: (() => void);
              icon: string;
              noAccessKey: boolean;
              order: number;
              title: (() => string);
              visible: (() => boolean);
          }[]
        • Parameters

          • track: any
          • collection: any

          Returns {
              execute: (() => void);
              icon: string;
              noAccessKey: boolean;
              order: number;
              title: (() => string);
              visible: (() => boolean);
          }[]

  • albumArtist: {
        getMenuItems: ((track, collection) => ExecutableAction[]);
    }

    Undocumented

  • artist: {
        getMenuItems: ((track, collection) => ExecutableAction[]);
    }

    Undocumented

  • compFolder: {
        getMenuItems: ((track) => {
            execute: (() => void);
            icon: string;
            order: number;
            title: (() => string);
        }[]);
    }

    Undocumented

    • getMenuItems: ((track) => {
          execute: (() => void);
          icon: string;
          order: number;
          title: (() => string);
      }[])

      Undocumented

        • (track): {
              execute: (() => void);
              icon: string;
              order: number;
              title: (() => string);
          }[]
        • Parameters

          • track: any

          Returns {
              execute: (() => void);
              icon: string;
              order: number;
              title: (() => string);
          }[]

  • composer: {
        getMenuItems: ((track, collection) => ExecutableAction[]);
    }

    Undocumented

  • dbFolder: {
        getMenuItems: ((track, collection) => {
            execute: (() => void);
            icon: string;
            order: number;
            title: (() => string);
        }[]);
    }

    Undocumented

    • getMenuItems: ((track, collection) => {
          execute: (() => void);
          icon: string;
          order: number;
          title: (() => string);
      }[])

      Undocumented

        • (track, collection): {
              execute: (() => void);
              icon: string;
              order: number;
              title: (() => string);
          }[]
        • Parameters

          • track: any
          • collection: any

          Returns {
              execute: (() => void);
              icon: string;
              order: number;
              title: (() => string);
          }[]

  • explorerFolder: {
        getMenuItems: ((track) => {
            execute: (() => void);
            icon: string;
            order: number;
            title: (() => string);
        }[]);
    }

    Undocumented

    • getMenuItems: ((track) => {
          execute: (() => void);
          icon: string;
          order: number;
          title: (() => string);
      }[])

      Undocumented

        • (track): {
              execute: (() => void);
              icon: string;
              order: number;
              title: (() => string);
          }[]
        • Parameters

          • track: any

          Returns {
              execute: (() => void);
              icon: string;
              order: number;
              title: (() => string);
          }[]

  • genre: {
        getMenuItems: ((track, collection) => ExecutableAction[]);
    }

    Undocumented

  • playlist: {
        getMenuItems: ((track) => {
            icon: string;
            order: number;
            submenu: ((params) => Promise<unknown>);
            title: (() => any);
            track: any;
        }[]);
    }

    Undocumented

    • getMenuItems: ((track) => {
          icon: string;
          order: number;
          submenu: ((params) => Promise<unknown>);
          title: (() => any);
          track: any;
      }[])

      Undocumented

        • (track): {
              icon: string;
              order: number;
              submenu: ((params) => Promise<unknown>);
              title: (() => any);
              track: any;
          }[]
        • Parameters

          • track: any

          Returns {
              icon: string;
              order: number;
              submenu: ((params) => Promise<unknown>);
              title: (() => any);
              track: any;
          }[]

  • title: {
        getMenuItems: ((track, collection) => {
            execute: (() => void);
            icon: string;
            noAccessKey: boolean;
            order: number;
            title: (() => string);
            visible: (() => boolean);
        }[]);
    }

    Undocumented

    • getMenuItems: ((track, collection) => {
          execute: (() => void);
          icon: string;
          noAccessKey: boolean;
          order: number;
          title: (() => string);
          visible: (() => boolean);
      }[])

      Undocumented

        • (track, collection): {
              execute: (() => void);
              icon: string;
              noAccessKey: boolean;
              order: number;
              title: (() => string);
              visible: (() => boolean);
          }[]
        • Parameters

          • track: any
          • collection: any

          Returns {
              execute: (() => void);
              icon: string;
              noAccessKey: boolean;
              order: number;
              title: (() => string);
              visible: (() => boolean);
          }[]

  • year: {
        getMenuItems: ((track, collection) => {
            execute: (() => void);
            icon: string;
            order: number;
            title: (() => string);
            visible: (() => boolean);
        }[]);
    }

    Undocumented

    • getMenuItems: ((track, collection) => {
          execute: (() => void);
          icon: string;
          order: number;
          title: (() => string);
          visible: (() => boolean);
      }[])

      Undocumented

        • (track, collection): {
              execute: (() => void);
              icon: string;
              order: number;
              title: (() => string);
              visible: (() => boolean);
          }[]
        • Parameters

          • track: any
          • collection: any

          Returns {
              execute: (() => void);
              icon: string;
              order: number;
              title: (() => string);
              visible: (() => boolean);
          }[]

Undocumented