stk-codegen 1.0.3 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export type GetWorkingDirectoryResult = {
|
|
2
|
+
/**
|
|
3
|
+
* Caminho absoluto do diretório de trabalho atual do processo Node.
|
|
4
|
+
* Equivalente ao resultado de `pwd` em sistemas Unix, porém utilizando APIs do Node
|
|
5
|
+
* para funcionar de forma portável em qualquer sistema operacional.
|
|
6
|
+
*/
|
|
7
|
+
cwd: string;
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* Retorna o diretório de trabalho atual, similar ao comando `pwd` em Unix,
|
|
11
|
+
* mas usando `process.cwd()` para garantir portabilidade entre sistemas operacionais.
|
|
12
|
+
*/
|
|
13
|
+
export declare function GetWorkingDirectory(): Promise<GetWorkingDirectoryResult>;
|
package/dist/tools/index.d.ts
CHANGED