1078
const result: IInstructionFile[] = [];
1079
for (const file of discoveryInfo.files) {
1081
>
result.push({
1082
>
uri: file.promptPath.uri,
1083
>
storage: file.promptPath.storage,
1084
>
extension: file.promptPath.extension,
1085
>
pluginUri: file.promptPath.pluginUri,
1086
>
source: file.promptPath.source,
1087
>
name: file.promptPath.name,
1088
>
description: file.promptPath.description,
1089
>
pattern: file.pattern,
1090
>
sessionTypes: file.promptPath.sessionTypes,
1091
>
});
1092
>
}
1093
>
}
1094
return result;
1095
}