PR comments

This commit is contained in:
Adria Navarro 2024-05-02 12:12:48 +01:00
parent a0e58600bd
commit 2e4b69e381
1 changed files with 2 additions and 2 deletions

View File

@ -117,12 +117,12 @@ interface UserReferenceInfo {
export function processOutputBBReferences(
value: string,
type: FieldType.BB_REFERENCE_SINGLE
): Promise<UserReferenceInfo>
): Promise<UserReferenceInfo | undefined>
export function processOutputBBReferences(
value: string,
type: FieldType.BB_REFERENCE,
subtype: BBReferenceFieldSubType
): Promise<UserReferenceInfo[]>
): Promise<UserReferenceInfo[] | undefined>
export async function processOutputBBReferences(
value: string | string[],