Fix imports

This commit is contained in:
Caleb Okpara 2022-05-17 13:12:07 +00:00
parent 31086ceb6e
commit 048db3faa7
4 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
import DeleteOneBy from './DeleteOneBy';
import BaseModel from '../../../Common/Models/BaseModel';
import BaseModel from 'Common/Models/BaseModel';
type DeleteBy<TBaseModel extends BaseModel> = DeleteOneBy<TBaseModel>;
export default DeleteBy;

View File

@ -1,4 +1,4 @@
import BaseModel from '../../../Common/Models/BaseModel';
import BaseModel from 'Common/Models/BaseModel';
import UpdateOneBy from './UpdateOneBy';
type UpdateBy<TBaseModel extends BaseModel> = UpdateOneBy<TBaseModel>;

View File

@ -1,5 +1,5 @@
import ActionPayload from '../Types/ActionPayload';
import ObjectID from '../../../Common/Types/ObjectID';
import ObjectID from 'Common/Types/ObjectID';
export interface OpenModalActionPayload extends ActionPayload {
id: ObjectID;

View File

@ -1,4 +1,4 @@
import ObjectID from '../../../Common/Types/ObjectID';
import ObjectID from 'Common/Types/ObjectID';
export default interface ActionPayload {
id?: ObjectID;
}