You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

knowledge.ts 160B

12345678
  1. import type { Persona } from "@/types/persona"
  2. export interface Knowledge {
  3. id: number;
  4. uniq_slug: string;
  5. name: string;
  6. personas: Persona[];
  7. }