Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

Commit

Permalink
fix: remove title in favor of description
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Feb 6, 2018
1 parent 76618ef commit 26f5dc3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export interface Command {
hidden: boolean
aliases: string[]
description?: string
title?: string
usage?: string | string[]
examples?: string[]
type?: string
Expand Down Expand Up @@ -55,7 +54,6 @@ export namespace Command {
hidden: boolean
aliases: string[]
description?: string
title?: string
usage?: string | string[]
examples?: string[]
}
Expand All @@ -78,7 +76,6 @@ export namespace Command {

export function toCached(c: Class): Command {
return {
title: c.title,
id: c.id,
description: c.description,
usage: c.usage,
Expand Down

0 comments on commit 26f5dc3

Please sign in to comment.