8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
export interface Path {
|
|
readonly home: string
|
|
readonly data: string
|
|
readonly cache: string
|
|
readonly config: string
|
|
readonly state: string
|
|
readonly temp: string
|
|
}
|