Enable strict null in MSSQL extension (#22433)

This commit is contained in:
Charles Gagnon
2023-03-23 16:49:48 -07:00
committed by GitHub
parent 59ad572800
commit dfc6469c9d
6 changed files with 19 additions and 11 deletions

View File

@@ -7,7 +7,7 @@ export class DataItemCache<T> {
millisecondsToLive: number;
getValueFunction: (...args: any[]) => Promise<T>;
cachedItem: T;
cachedItem: T | undefined;
fetchDate: Date;
constructor(getValueFunction: (...args: any[]) => Promise<T>, secondsToLive: number) {