@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
34 lines (33 loc) • 1.01 kB
TypeScript
import type { Source } from "./Source";
import type { _User } from "./_User";
export interface DashboardAttributes {
id: string;
objectId: string;
createdAt: Date;
updatedAt: Date;
heroWidget?: string;
layout?: any[];
name?: string;
source?: Source;
type: string;
user: _User;
widgets?: any[];
}
export declare class Dashboard extends Parse.Object<DashboardAttributes> {
static className: string;
constructor(data?: Partial<DashboardAttributes>);
get heroWidget(): string | undefined;
set heroWidget(value: string | undefined);
get layout(): any[] | undefined;
set layout(value: any[] | undefined);
get name(): string | undefined;
set name(value: string | undefined);
get source(): Source | undefined;
set source(value: Source | undefined);
get type(): string;
set type(value: string);
get user(): _User;
set user(value: _User);
get widgets(): any[] | undefined;
set widgets(value: any[] | undefined);
}