test(ivy): clean up two parameters in ngtsc_spec.ts inferred as 'any' (#28169)
PR Close #28169
This commit is contained in:
parent
5dbc7d9a63
commit
a789a3f532
|
@ -1794,11 +1794,11 @@ describe('ngtsc behavioral tests', () => {
|
||||||
`);
|
`);
|
||||||
|
|
||||||
env.driveMain({
|
env.driveMain({
|
||||||
beforeTs: [() => sourceFile => {
|
beforeTs: [() => (sourceFile: ts.SourceFile) => {
|
||||||
beforeCount++;
|
beforeCount++;
|
||||||
return sourceFile;
|
return sourceFile;
|
||||||
}],
|
}],
|
||||||
afterTs: [() => sourceFile => {
|
afterTs: [() => (sourceFile: ts.SourceFile) => {
|
||||||
afterCount++;
|
afterCount++;
|
||||||
return sourceFile;
|
return sourceFile;
|
||||||
}],
|
}],
|
||||||
|
|
Loading…
Reference in New Issue