mirror of
https://code.forgejo.org/actions/setup-python
synced 2025-03-17 07:44:07 +01:00
6 lines
193 B
TypeScript
6 lines
193 B
TypeScript
declare function realpath(filepath: string): string;
|
|
declare namespace realpath {
|
|
var sync: typeof realpathSync;
|
|
}
|
|
declare function realpathSync(filepath: string): string;
|
|
export = realpath;
|