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

PropertyTypeDescription
args?stringThe command line arguments when program is executed. Should only be set if type is task.
description?stringDescription of the task (displayed in a tooltip). Should only be set if type is task. Maximum length 260 characters.
iconIndex?numberThe zero-based index of the icon in the resource file.
iconPath?stringThe absolute path to an icon to be displayed in a Jump List.
path?stringPath of the file to open. Should only be set if type is file.
program?stringPath of the program to execute. Should only be set if type is task.
title?stringThe 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?stringThe working directory.

Links to this page: