UNPKG

@openinc/parse-server-opendash

Version:
24 lines (23 loc) 661 B
import type { _User } from "./_User"; export interface WidgetAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; config?: any; name?: string; type?: string; user: _User; } export declare class Widget extends Parse.Object<WidgetAttributes> { static className: string; constructor(data?: Partial<WidgetAttributes>); get config(): any | undefined; set config(value: any | undefined); get name(): string | undefined; set name(value: string | undefined); get type(): string | undefined; set type(value: string | undefined); get user(): _User; set user(value: _User); }