mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Enable strict null in MSSQL extension (#22433)
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user