mirror of
https://github.com/fanchenio/DawnLauncher.git
synced 2025-07-14 05:12:11 +08:00
14 lines
245 B
TypeScript
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;
|
|
}
|