Community-Related Types

Community Type

type DisadusCommunity = {
  name: string;
  description: string;
  image: string;
  id: string;
  members: string[];
  admins: string[];
  creator: string;
  createdAt: number;
  schoology?: {
    domain: string;
  };
  colors: {
    primary: string;
    secondary: string;
  };
  vanitybg: string;
  plugins: string[];
  private?: boolean;
  verified?: boolean;
};

Community Join Type

Community LMS Types

Last updated

Was this helpful?