Skip to content
This repository was archived by the owner on May 20, 2024. It is now read-only.

Actions definition

Kryštof Krátký edited this page Mar 5, 2023 · 1 revision

show type in code

type Action = {
  id: string;
  name: string;
  keywords?: string[]; 
  icon?: any | undefined | null;
  subtitle?: string | undefined | null;
  perform?: (event: Event) => void | undefined | null;
  closeOnSelect?: boolean | undefined | null;
  parent?: string | undefined | null;
  group?: string | undefined | null;
};

todo: explanation

Keywords:

Subtitle:

Perform:

Parent:

Group:

Clone this wiki locally