Skip to content

Commit

Permalink
fix: use type
Browse files Browse the repository at this point in the history
  • Loading branch information
suneettipirneni committed Jan 19, 2022
1 parent 99f83eb commit 590cc66
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion deno/rest/v8/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export type RESTPostAPIChannelMessageJSONBody = AddUndefinedToPossiblyUndefinedP
/**
* Message flags combined as a bitfield
*/
flags?: bigint;
flags?: MessageFlags;
}>;

/**
Expand Down
2 changes: 1 addition & 1 deletion deno/rest/v9/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ export type RESTPostAPIChannelMessageJSONBody = AddUndefinedToPossiblyUndefinedP
/**
* Message flags combined as a bitfield
*/
flags?: bigint;
flags?: MessageFlags;
}>;

/**
Expand Down
2 changes: 1 addition & 1 deletion rest/v8/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export type RESTPostAPIChannelMessageJSONBody = AddUndefinedToPossiblyUndefinedP
/**
* Message flags combined as a bitfield
*/
flags?: bigint;
flags?: MessageFlags;
}>;

/**
Expand Down
2 changes: 1 addition & 1 deletion rest/v9/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ export type RESTPostAPIChannelMessageJSONBody = AddUndefinedToPossiblyUndefinedP
/**
* Message flags combined as a bitfield
*/
flags?: bigint;
flags?: MessageFlags;
}>;

/**
Expand Down

0 comments on commit 590cc66

Please sign in to comment.