diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-15 14:40:59 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-15 14:40:59 +0200 |
commit | f481a34b7bac425120574cc05d4f21789b46a741 (patch) | |
tree | 45fb603d7b8c6776b554ea3f83160ef98f4047ff /cdn | |
parent | Merge branch 'master' of https://github.com/fosscord/fosscord-server (diff) | |
download | server-f481a34b7bac425120574cc05d4f21789b46a741.tar.xz |
:bug: fix types
Diffstat (limited to 'cdn')
-rw-r--r-- | cdn/src/Server.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cdn/src/Server.ts b/cdn/src/Server.ts index a73a948c..522e11c2 100644 --- a/cdn/src/Server.ts +++ b/cdn/src/Server.ts @@ -6,7 +6,7 @@ import avatarsRoute from "./routes/avatars"; export interface CDNServerOptions extends ServerOptions {} export class CDNServer extends Server { - public options: CDNServerOptions; + public declare options: CDNServerOptions; constructor(options?: Partial<CDNServerOptions>) { super(options); |