UNPKG

@openinc/parse-server-opendash

Version:
24 lines (23 loc) 692 B
import type { Tenant } from "./Tenant"; export interface NavigationGroupAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; icon?: string; label: string; order: number; tenant?: Tenant; } export declare class NavigationGroup extends Parse.Object<NavigationGroupAttributes> { static className: string; constructor(data?: Partial<NavigationGroupAttributes>); get icon(): string | undefined; set icon(value: string | undefined); get label(): string; set label(value: string); get order(): number; set order(value: number); get tenant(): Tenant | undefined; set tenant(value: Tenant | undefined); }