1
0
Fork 0

Return types in funcs

refactor/models
Matthew 2019-11-16 14:19:24 -05:00
parent 9b1c765a49
commit 6fac48e996
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
2 changed files with 2 additions and 4 deletions

View File

@ -1,8 +1,6 @@
import uuid from 'uuid/v4';
import { Client } from '..'; import { Client } from '..';
import { RichEmbed } from '../class';
export default function checkLock(client: Client) { export default function checkLock(client: Client): void {
setInterval(async () => { setInterval(async () => {
try { try {
const moderations = await client.db.Moderation.find(); const moderations = await client.db.Moderation.find();

View File

@ -1,4 +1,4 @@
export default function dataConversion(bytes) { export default function dataConversion(bytes: number): string {
const i = Math.floor(Math.log(bytes) / Math.log(1024)); const i = Math.floor(Math.log(bytes) / Math.log(1024));
const sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']; const sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
if (bytes === 0) { if (bytes === 0) {