mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
Fix imports
This commit is contained in:
parent
31086ceb6e
commit
048db3faa7
@ -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;
|
||||
|
@ -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>;
|
||||
|
@ -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;
|
||||
|
@ -1,4 +1,4 @@
|
||||
import ObjectID from '../../../Common/Types/ObjectID';
|
||||
import ObjectID from 'Common/Types/ObjectID';
|
||||
export default interface ActionPayload {
|
||||
id?: ObjectID;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user