Skip to content

Commit ccee897

Browse files
committed
typings: fix ModulesBinding types
PR-URL: #55549 Refs: https://github.com/nodejs/node/pull/55412/files#r1817708918 Reviewed-By: Jacob Smith <[email protected]> Reviewed-By: Marco Ippolito <[email protected]>
1 parent d3c6d66 commit ccee897

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

typings/internalBinding/modules.d.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export type PackageConfig = {
99
export type DeserializedPackageConfig = {
1010
data: PackageConfig,
1111
exists: boolean,
12-
path: URL['pathname'],
12+
path: string,
1313
}
1414
export type SerializedPackageConfig = [
1515
PackageConfig['name'],
@@ -22,9 +22,10 @@ export type SerializedPackageConfig = [
2222

2323
export interface ModulesBinding {
2424
readPackageJSON(path: string): SerializedPackageConfig | undefined;
25-
getNearestParentPackageJSON(path: string): SerializedPackageConfig | undefined
26-
getNearestRawParentPackageJSON(origin: URL['pathname']): [ReturnType<JSON['stringify']>, DeserializedPackageConfig['path']] | undefined
2725
getNearestParentPackageJSONType(path: string): PackageConfig['type']
26+
getNearestParentPackageJSON(path: string): SerializedPackageConfig | undefined
2827
getPackageScopeConfig(path: string): SerializedPackageConfig | undefined
29-
getPackageJSONScripts(): string | undefined
28+
enableCompileCache(path?: string): { status: number, message?: string, directory?: string }
29+
getCompileCacheDir(): string | undefined
30+
flushCompileCache(keepDeserializedCache?: boolean): void
3031
}

0 commit comments

Comments
 (0)