mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-12 19:59:02 +08:00
12 lines
436 B
TypeScript
12 lines
436 B
TypeScript
// Type definitions for xdg-basedir 2.0
|
|
// Project: https://github.com/sindresorhus/xdg-basedir
|
|
// Definitions by: Tomek Łaziuk <https://github.com/tlaziuk>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export const data: string | null;
|
|
export const config: string | null;
|
|
export const cache: string | null;
|
|
export const runtime: string | null;
|
|
export const dataDirs: string[];
|
|
export const configDirs: string[];
|