7 lines
175 B
TypeScript
7 lines
175 B
TypeScript
// # spell-checker:ignore rivy
|
|
declare namespace OSPaths {
|
|
function home(): string;
|
|
function temp(): string;
|
|
}
|
|
declare function OSPaths(): typeof OSPaths;
|
|
export = OSPaths;
|