15 lines
832 B
TypeScript
15 lines
832 B
TypeScript
import { NoteController } from "@spt/controllers/NoteController";
|
|
import { IPmcData } from "@spt/models/eft/common/IPmcData";
|
|
import { IItemEventRouterResponse } from "@spt/models/eft/itemEvent/IItemEventRouterResponse";
|
|
import { INoteActionData } from "@spt/models/eft/notes/INoteActionData";
|
|
export declare class NoteCallbacks {
|
|
protected noteController: NoteController;
|
|
constructor(noteController: NoteController);
|
|
/** Handle AddNote event */
|
|
addNote(pmcData: IPmcData, body: INoteActionData, sessionID: string): IItemEventRouterResponse;
|
|
/** Handle EditNote event */
|
|
editNote(pmcData: IPmcData, body: INoteActionData, sessionID: string): IItemEventRouterResponse;
|
|
/** Handle DeleteNote event */
|
|
deleteNote(pmcData: IPmcData, body: INoteActionData, sessionID: string): IItemEventRouterResponse;
|
|
}
|