Skip to content

Commit

Permalink
XIVY-12288 typify RequestTypes
Browse files Browse the repository at this point in the history
  • Loading branch information
ivy-lgi committed Aug 26, 2024
1 parent 16aca04 commit 73adc7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/dataclass-editor/src/protocol/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ export type EditorProps = { context: DataContext; directSave?: boolean };
export type SaveArgs = Data & { directSave?: boolean };

export interface RequestTypes {
data: [any, any];
saveData: [any, any];
data: [DataContext, Data];
saveData: [Data, String];
}

export interface NotificationTypes {
Expand Down

0 comments on commit 73adc7b

Please sign in to comment.