7 lines
121 B
TypeScript
7 lines
121 B
TypeScript
export type ActionResultV0 = {
|
|
message: string;
|
|
value: string | null;
|
|
copyable: boolean;
|
|
qr: boolean;
|
|
};
|