@types/serverless
Advanced tools
Comparing version 3.12.4 to 3.12.5
@@ -13,9 +13,11 @@ import Serverless = require('../index'); | ||
commands?: { [command: string]: {} } | undefined; | ||
options?: { | ||
[option: string]: { | ||
usage?: string | undefined; | ||
required?: boolean | undefined; | ||
shortcut?: string | undefined; | ||
}; | ||
} | undefined; | ||
options?: | ||
| { | ||
[option: string]: { | ||
usage?: string | undefined; | ||
required?: boolean | undefined; | ||
shortcut?: string | undefined; | ||
}; | ||
} | ||
| undefined; | ||
}; | ||
@@ -27,7 +29,9 @@ } | ||
interface VariableResolvers { | ||
[variablePrefix: string]: VariableResolver | { | ||
resolver: VariableResolver, | ||
isDisabledAtPrepopulation?: boolean | undefined, | ||
serviceName?: string | undefined | ||
}; | ||
[variablePrefix: string]: | ||
| VariableResolver | ||
| { | ||
resolver: VariableResolver; | ||
isDisabledAtPrepopulation?: boolean | undefined; | ||
serviceName?: string | undefined; | ||
}; | ||
} | ||
@@ -38,7 +42,9 @@ | ||
interface ConfigurationVariablesSources { | ||
[variablePrefix: string]: ConfigurationVariablesSource | { | ||
resolve: ConfigurationVariablesSource, | ||
isDisabledAtPrepopulation?: boolean | undefined, | ||
serviceName?: string | undefined | ||
}; | ||
[variablePrefix: string]: | ||
| ConfigurationVariablesSource | ||
| { | ||
resolve: ConfigurationVariablesSource; | ||
isDisabledAtPrepopulation?: boolean | undefined; | ||
serviceName?: string | undefined; | ||
}; | ||
} | ||
@@ -48,12 +54,12 @@ | ||
log: { | ||
error: (text: string) => void; | ||
warning: (text: string) => void; | ||
notice: (text: string) => void; | ||
info: (text: string) => void; | ||
debug: (text: string) => void; | ||
verbose: (text: string) => void; | ||
success: (text: string) => void; | ||
error: (text: string) => void; | ||
warning: (text: string) => void; | ||
notice: (text: string) => void; | ||
info: (text: string) => void; | ||
debug: (text: string) => void; | ||
verbose: (text: string) => void; | ||
success: (text: string) => void; | ||
}; | ||
writeText: (text: string | string[]) => void; | ||
} | ||
} | ||
@@ -60,0 +66,0 @@ interface PluginStatic { |
@@ -17,9 +17,11 @@ import Serverless = require('../index'); | ||
}; | ||
Outputs?: { | ||
[key: string]: any; | ||
} | undefined; | ||
Outputs?: | ||
| { | ||
[key: string]: any; | ||
} | ||
| undefined; | ||
}; | ||
name: string; | ||
stackTags?: { [key: string]: any; }; | ||
stackTags?: { [key: string]: any }; | ||
stage: string; | ||
@@ -26,0 +28,0 @@ region: string; |
{ | ||
"name": "@types/serverless", | ||
"version": "3.12.4", | ||
"version": "3.12.5", | ||
"description": "TypeScript definitions for serverless", | ||
@@ -68,4 +68,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/serverless", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "96323bf14c128517c7757a85538134bc2edddadefefefcfa85b90e242e3395a7", | ||
"typesPublisherContentHash": "643ab3178b1bc9273d2f4d5227aecead9af8b3fd0f27a8fe94261ffcfb6ad5cc", | ||
"typeScriptVersion": "3.9" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Thu, 05 May 2022 20:31:39 GMT | ||
* Last updated: Fri, 06 May 2022 03:01:38 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: none |
38788
973