public function getMarkdown()

in src/PageSections/TypeDeclaration.hack [21:27]


  public function getMarkdown(): ?string {
    $t = $this->definition;
    if (!$t is ScannedTypeish) {
      return null;
    }
    return $this->getTypeDeclaration($t);
  }