UNPKG

@openinc/parse-server-opendash

Version:
17 lines (16 loc) 409 B
export interface LogAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; references: any; type: string; } export declare class Log extends Parse.Object<LogAttributes> { static className: string; constructor(data?: Partial<LogAttributes>); get references(): any; set references(value: any); get type(): string; set type(value: string); }