diff --git a/src/class/LocalStorage.ts b/src/class/LocalStorage.ts index bebfeb2..cc076f7 100644 --- a/src/class/LocalStorage.ts +++ b/src/class/LocalStorage.ts @@ -1,7 +1,7 @@ /* eslint-disable no-constant-condition */ import { promises as fs, accessSync, constants, writeFileSync } from 'fs'; import { promisify } from 'util'; -import { join } from 'path' +import { join } from 'path'; import { gzip, gzipSync, unzip } from 'zlib'; type JSONData = [{ key: string, value: any }?]; diff --git a/src/models/index.ts b/src/models/index.ts index 0626279..cb333b9 100644 --- a/src/models/index.ts +++ b/src/models/index.ts @@ -9,7 +9,7 @@ export { default as Motion, MotionInterface } from './Motion'; export { default as NNTrainingData, NNTrainingDataInterface } from './NNTrainingData'; export { default as Note, NoteInterface } from './Note'; export { default as PagerNumber, PagerNumberInterface, PagerNumberRaw } from './PagerNumber'; -export { default as Proclamation, ProclamationInterface } from './Proclamation' +export { default as Proclamation, ProclamationInterface } from './Proclamation'; export { default as Promo, PromoInterface } from './Promo'; export { default as Rank, RankInterface } from './Rank'; export { default as Redirect, RedirectInterface, RedirectRaw } from './Redirect';