Files
PathEditor/src/core/path-entry.ts
T

6 lines
127 B
TypeScript

/** PATH 路径条目 — 包含路径值和启用状态 */
export interface PathEntry {
path: string;
enabled: boolean;
}