test: update golden api for devkit core (#13105)

This commit is contained in:
clydin 2018-11-30 19:07:27 -05:00 committed by vikerman
parent 7b3dd8f510
commit 53f15715bb

View File

@ -615,13 +615,14 @@ export declare class ProjectToolNotFoundException extends BaseException {
} }
export interface PromptDefinition { export interface PromptDefinition {
default?: string | number | boolean | null; default?: string | string[] | number | boolean | null;
id: string; id: string;
items?: Array<string | { items?: Array<string | {
value: JsonValue; value: JsonValue;
label: string; label: string;
}>; }>;
message: string; message: string;
multiselect?: boolean;
priority: number; priority: number;
raw?: string | JsonObject; raw?: string | JsonObject;
type: string; type: string;