Sdk Reference

PublishPod

Base class to be extended when creating a pod for publishing

plant(opts: PublishPodPlantOpts)

  • opts
    • engine: DEngineClientV2
    • config: PublishPodConfig
    • note: NotePropsV2
export type NotePropsV2 = {
  id: string;
  title: string;
  desc: string;
  links: DLink[];
  fname: string;
  updated: string;
  created: string;
  parent: DNodePointerV2 | null;
  children: DNodePointerV2[];
  body: string;
  custom?: any;
  schema?: { moduleId: string; schemaId: string };
  vault: DVault;
  ...
};

Backlinks