Skip to content

Commit

Permalink
Code: 順序を揃える
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi authored Dec 31, 2024
1 parent c109315 commit 00878a4
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/type/ipc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,18 +53,6 @@ export type IpcIHData = {
return?: string;
};

SHOW_EXPORT_FILE_DIALOG: {
args: [
obj: {
title: string;
defaultPath?: string;
extensionName: string;
extensions: string[];
},
];
return?: string;
};

SHOW_PROJECT_SAVE_DIALOG: {
args: [obj: { title: string; defaultPath?: string }];
return?: string;
Expand Down Expand Up @@ -95,6 +83,18 @@ export type IpcIHData = {
return: MessageBoxReturnValue;
};

SHOW_EXPORT_FILE_DIALOG: {
args: [
obj: {
title: string;
defaultPath?: string;
extensionName: string;
extensions: string[];
},
];
return?: string;
};

IS_AVAILABLE_GPU_MODE: {
args: [];
return: boolean;
Expand Down

0 comments on commit 00878a4

Please sign in to comment.