Skip to content

Commit

Permalink
feat: optional status
Browse files Browse the repository at this point in the history
  • Loading branch information
Quantumlyy authored and favna committed Jul 22, 2020
1 parent bd081fc commit 53d4165
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/lib/structures/Monitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,40 +42,40 @@ export interface Monitor {
* @since 1.0.0
* @public
*/
ignoreBots: boolean;
ignoreBots?: boolean;

/**
* Should this monitor ignore users
* @since 1.0.0
* @public
*/
ignoreUsers: boolean;
ignoreUsers?: boolean;

/**
* Should this monitor ignore messages sent by the bot itself
* @since 1.0.0
* @public
*/
ignoreSelf: boolean;
ignoreSelf?: boolean;

/**
* Should this monitor ignore everyone except itself
* @since 1.0.0
* @public
*/
ignoreOthers: boolean;
ignoreOthers?: boolean;

/**
* Should this monitor ignore webhook messages
* @since 1.0.0
* @public
*/
ignoreWebhooks: boolean;
ignoreWebhooks?: boolean;

/**
* Should this monitor ignore message edits
* @since 1.0.0
* @public
*/
ignoreEdits: boolean;
ignoreEdits?: boolean;
}

0 comments on commit 53d4165

Please sign in to comment.