UNPKG

@openinc/parse-server-opendash

Version:
48 lines (47 loc) 1.51 kB
import type { Tenant } from "./Tenant"; export interface NavigationItemAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; activeCondition?: string; color?: string; event?: string; group?: string; icon?: string; label: string; link?: string; name?: string; order: number; place: string; routeCondition?: string; tenant?: Tenant; } export declare class NavigationItem extends Parse.Object<NavigationItemAttributes> { static className: string; constructor(data?: Partial<NavigationItemAttributes>); get activeCondition(): string | undefined; set activeCondition(value: string | undefined); get color(): string | undefined; set color(value: string | undefined); get event(): string | undefined; set event(value: string | undefined); get group(): string | undefined; set group(value: string | undefined); get icon(): string | undefined; set icon(value: string | undefined); get label(): string; set label(value: string); get link(): string | undefined; set link(value: string | undefined); get name(): string | undefined; set name(value: string | undefined); get order(): number; set order(value: number); get place(): string; set place(value: string); get routeCondition(): string | undefined; set routeCondition(value: string | undefined); get tenant(): Tenant | undefined; set tenant(value: Tenant | undefined); }