import { SharePermission } from "../definitions/SharePermission"; export interface DashboardDetails { /** * The name of the dashboard. */ name: string; /** * The description of the dashboard. */ description?: string; /** * The share permissions for the dashboard. */ sharePermissions: Array; /** * The edit permissions for the dashboard. */ editPermissions: Array; } //# sourceMappingURL=DashboardDetails.d.ts.map