Server/project/src/models/spt/callbacks/IBundleCallbacks.ts

7 lines
243 B
TypeScript
Raw Normal View History

2023-03-03 15:23:46 +00:00
export interface IBundleCallbacks
{
2023-11-15 20:35:05 -05:00
sendBundle(sessionID: string, req: any, resp: any, body: any): any;
getBundles(url: string, info: any, sessionID: string): string;
getBundle(url: string, info: any, sessionID: string): string;
2023-03-03 15:23:46 +00:00
}