diff --git a/angular/test/bazel/material/index.html b/angular/test/bazel/material/index.html index 5eaf71d4..b9bf0bba 100644 --- a/angular/test/bazel/material/index.html +++ b/angular/test/bazel/material/index.html @@ -1,4 +1,4 @@ - + diff --git a/nodejs/fs-linker/src/fs.ts b/nodejs/fs-linker/src/fs.ts index f24d6052..5315bece 100644 --- a/nodejs/fs-linker/src/fs.ts +++ b/nodejs/fs-linker/src/fs.ts @@ -975,7 +975,7 @@ function writeFileSync( export function patchFs( vfs: Vfs, - delegate: { -readonly [K in keyof typeof fs]: (typeof fs)[K] }, + delegate: { -readonly [K in keyof typeof fs]: typeof fs[K] }, ) { delegate.access = access(vfs, delegate.access); delegate.accessSync = accessSync(vfs, delegate.accessSync); diff --git a/util/starlark/src/index.ts b/util/starlark/src/index.ts index e1fb4a7a..6b58fc29 100644 --- a/util/starlark/src/index.ts +++ b/util/starlark/src/index.ts @@ -25,10 +25,7 @@ export class StarlarkVariable { } export class StarlarkEqualStatement { - constructor( - readonly left: StarlarkVariable, - readonly right: StarlarkValue, - ) {} + constructor(readonly left: StarlarkVariable, readonly right: StarlarkValue) {} } export type StarlarkStatement = StarlarkEqualStatement;