diff options
author | Joseph Ditton <jditton.atomic@gmail.com> | 2021-12-01 20:18:26 -0700 |
---|---|---|
committer | Joseph Ditton <jditton.atomic@gmail.com> | 2021-12-01 20:18:26 -0700 |
commit | 84b45cd6b11347e66437cd92dc20372d0abd6eb9 (patch) | |
tree | 6e42b5861278485c67159dc57c225983e3fd69f8 /server/dto/class.dto.ts | |
parent | d803aaaf1be441f55fe674c3b0c6793e77a9203f (diff) | |
download | locchat-84b45cd6b11347e66437cd92dc20372d0abd6eb9.tar.gz locchat-84b45cd6b11347e66437cd92dc20372d0abd6eb9.zip |
adds roles
Diffstat (limited to 'server/dto/class.dto.ts')
-rw-r--r-- | server/dto/class.dto.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/dto/class.dto.ts b/server/dto/class.dto.ts new file mode 100644 index 0000000..b4181a1 --- /dev/null +++ b/server/dto/class.dto.ts @@ -0,0 +1 @@ +export type Class<T> = { new (...args: any[]): T }; |