1
0
Fork 0
mirror of synced 2024-09-12 23:43:09 +12:00

PR comments

This commit is contained in:
Adria Navarro 2024-05-02 12:12:48 +01:00
parent a0e58600bd
commit 2e4b69e381

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[],