diff options
Diffstat (limited to 'src/services/chart/charts/classes/notes.ts')
| -rw-r--r-- | src/services/chart/charts/classes/notes.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/services/chart/charts/classes/notes.ts b/src/services/chart/charts/classes/notes.ts index 7cc3c7de83..0675d346d1 100644 --- a/src/services/chart/charts/classes/notes.ts +++ b/src/services/chart/charts/classes/notes.ts @@ -1,10 +1,10 @@ import autobind from 'autobind-decorator'; -import Chart, { Obj, DeepPartial } from '../../core.js'; -import { SchemaType } from '@/misc/schema.js'; -import { Notes } from '@/models/index.js'; +import Chart, { Obj, DeepPartial } from '../../core'; +import { SchemaType } from '@/misc/schema'; +import { Notes } from '@/models/index'; import { Not, IsNull } from 'typeorm'; -import { Note } from '@/models/entities/note.js'; -import { name, schema } from '../schemas/notes.js'; +import { Note } from '@/models/entities/note'; +import { name, schema } from '../schemas/notes'; type NotesLog = SchemaType<typeof schema>; |