fix: broken import errors (#779)

* fix: broken import errors

* fix: snake case name
This commit is contained in:
Skillz4Killz
2021-04-08 14:22:11 -04:00
committed by GitHub
parent d8e12e7f8a
commit 3eaf1a5dcc
119 changed files with 355 additions and 398 deletions

View File

@@ -77,5 +77,5 @@ export interface User {
premiumType?: number;
}
export type DiscordUser = SnakeCaseProps<DiscordUserInternal>;
export type DiscordUser = SnakeCasedPropertiesDeep<DiscordUserInternal>;
```