mirror of
https://github.com/LHY0125/PathEditor.git
synced 2026-06-29 09:55:56 +08:00
32287c0e4b
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
6 lines
127 B
TypeScript
6 lines
127 B
TypeScript
/** PATH 路径条目 — 包含路径值和启用状态 */
|
|
export interface PathEntry {
|
|
path: string;
|
|
enabled: boolean;
|
|
}
|