DawnLauncher/types/common.d.ts
2023-11-03 15:17:45 +08:00

14 lines
245 B
TypeScript

// 快捷方式信息
export interface ShortcutInfo {
target: string | null;
arguments: string | null;
}
// 返回结果
export interface Result {
status: boolean;
message: string | null;
icon: string | null;
name: string | null;
}