add file offerUtility to tsconfig (#356)

This commit is contained in:
Chris-MS-896
2021-01-08 20:14:12 -06:00
committed by GitHub
parent ceefd7c615
commit 229119e697
3 changed files with 11 additions and 7 deletions

View File

@@ -210,9 +210,9 @@ export interface QueryMetrics {
export interface Offer {
id: string;
autoscaleMaxThroughput: number;
manualThroughput: number;
minimumThroughput: number;
autoscaleMaxThroughput: number | undefined;
manualThroughput: number | undefined;
minimumThroughput: number | undefined;
offerDefinition?: SDKOfferDefinition;
offerReplacePending: boolean;
}