@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
17 lines (16 loc) • 337 B
TypeScript
export type MessageData = {
type?: "userinput" | "system" | "todo";
translation?: {
[key: string]: any;
};
origin?: {
id: string | number;
classname: string;
};
todoCompleted?: boolean;
};
export type MessageField = {
title: string;
description: string;
data?: MessageData;
};