mirror of
https://code.forgejo.org/actions/setup-python.git
synced 2026-03-17 04:25:56 +03: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;
|