UNPKG

@openinc/parse-server-opendash

Version:
21 lines (20 loc) 540 B
import type { _User } from "./_User"; export interface WebPushAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; label: string; subscription: any; user: _User; } export declare class WebPush extends Parse.Object<WebPushAttributes> { static className: string; constructor(data?: Partial<WebPushAttributes>); get label(): string; set label(value: string); get subscription(): any; set subscription(value: any); get user(): _User; set user(value: _User); }