9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
|
export interface Action {
|
||
|
name: string
|
||
|
identifier: string
|
||
|
icon: string | null
|
||
|
is_disabled: boolean
|
||
|
disabled_reason: string | null
|
||
|
};
|
||
|
export type ActionHash = Record<string, Action>
|