8 lines
162 B
TypeScript
8 lines
162 B
TypeScript
import path = require("path");
|
|
|
|
export namespace DummyFiles {
|
|
export function TestFolder(): string {
|
|
return path.join(__dirname, "..", "..", "test");
|
|
}
|
|
}
|