UNPKG

modrinthjs

Version:
14 lines (13 loc) 300 B
/** * An action that can be performed on a notification */ export type NotificationAction = { /** * The friendly name for this action */ title?: string; /** * The HTTP code and path to request in order to perform this action. */ action_route?: Array<string>; };