UNPKG

@openinc/parse-server-opendash

Version:
24 lines (23 loc) 716 B
import type { Tenant } from "./Tenant"; export interface NavigationGroupAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; icon?: string | undefined; label: string; order: number; tenant?: Tenant | undefined; } 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); }