mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-06-04 19:42:46 +08:00
Fix the CI errors
Missed semicolons at the end of lines and string instead of String.
This commit is contained in:
committed by
GitHub
parent
6738d66ea6
commit
693e499e15
20
types/alexa-sdk/index.d.ts
vendored
20
types/alexa-sdk/index.d.ts
vendored
@@ -99,33 +99,33 @@ export interface Request {
|
||||
}
|
||||
|
||||
export interface ResolutionStatus {
|
||||
code: String
|
||||
code: string;
|
||||
}
|
||||
|
||||
export interface ResolutionValue {
|
||||
name: String,
|
||||
id: String
|
||||
name: string;
|
||||
id: string;
|
||||
}
|
||||
|
||||
export interface ResolutionValueContainer {
|
||||
value: ResolutionValue
|
||||
value: ResolutionValue;
|
||||
}
|
||||
|
||||
export interface Resolution {
|
||||
authority: String,
|
||||
status: ResolutionStatus,
|
||||
values: Array<ResolutionValueContainer>
|
||||
authority: string;
|
||||
status: ResolutionStatus;
|
||||
values: ResolutionValueContainer[];
|
||||
}
|
||||
|
||||
export interface Resolutions {
|
||||
resolutionsPerAuthority: Array<Resolution>
|
||||
resolutionsPerAuthority: Resolution[];
|
||||
}
|
||||
|
||||
export interface SlotValue {
|
||||
confirmationStatus?: ConfirmationStatuses;
|
||||
confirmationStatus: ConfirmationStatuses;
|
||||
name: string;
|
||||
value?: any;
|
||||
resolutions?: Resolutions
|
||||
resolutions?: Resolutions;
|
||||
}
|
||||
|
||||
export interface Intent {
|
||||
|
||||
Reference in New Issue
Block a user