Skip to content

ElectronJumpListItem

Unofficial

A single item in a Windows Jump List.

Import:

import type { ElectronJumpListItem } from '@obsidian-typings/obsidian-catalyst-latest';

Signature:

export interface ElectronJumpListItem

Properties

Property Type Description
args? string The command line arguments when program is executed. Should only be set if type is task.
description? string Description of the task (displayed in a tooltip). Should only be set if type is task. Maximum length 260 characters.
iconIndex? number The zero-based index of the icon in the resource file.
iconPath? string The absolute path to an icon to be displayed in a Jump List.
path? string Path of the file to open. Should only be set if type is file.
program? string Path of the program to execute. Should only be set if type is task.
title? string The text to be displayed for the item in the Jump List. Should only be set if type is task.
type? 'file' | 'separator' | 'task' The type of the Jump List item.
workingDirectory? string The working directory.

Links to this page: