mirror of
https://github.com/djhackersdev/minime.git
synced 2026-07-22 02:00:45 -05:00
8 lines
186 B
TypeScript
8 lines
186 B
TypeScript
import { ExtId } from "../model/base";
|
|
import { Profile } from "../model/profile";
|
|
|
|
export interface LoadEventInfoRequest {
|
|
type: "load_event_info_req";
|
|
profileId: ExtId<Profile>;
|
|
}
|