17 lines
323 B
TypeScript
17 lines
323 B
TypeScript
|
|
export interface SimValidationResult {
|
||
|
|
account: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface SimNotificationContext {
|
||
|
|
userId: string;
|
||
|
|
subscriptionId: number;
|
||
|
|
account?: string;
|
||
|
|
[key: string]: unknown;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface SimActionNotification {
|
||
|
|
action: string;
|
||
|
|
status: "SUCCESS" | "ERROR";
|
||
|
|
context: SimNotificationContext;
|
||
|
|
}
|