UNPKG

@openinc/parse-server-opendash

Version:
14 lines (13 loc) 352 B
export interface LanguageAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; label: string; } export declare class Language extends Parse.Object<LanguageAttributes> { static className: string; constructor(data?: Partial<LanguageAttributes>); get label(): string; set label(value: string); }