mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
* sdk tweaks * update action result types * accommodate new action response types * fix: show action value labels * Feature/get status effect (#2765) * wip: get status * feat: Add the get_status for effects * feat: Do a callback --------- Co-authored-by: J H <dragondef@gmail.com> --------- Co-authored-by: Matt Hill <mattnine@protonmail.com> Co-authored-by: waterplea <alexander@inkin.ru> Co-authored-by: J H <dragondef@gmail.com>
13 lines
378 B
TypeScript
13 lines
378 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { ActionResultMember } from "./ActionResultMember"
|
|
|
|
export type ActionResultValue =
|
|
| {
|
|
type: "single"
|
|
value: string
|
|
copyable: boolean
|
|
qr: boolean
|
|
masked: boolean
|
|
}
|
|
| { type: "group"; value: Array<ActionResultMember> }
|