10 lines
256 B
TypeScript
10 lines
256 B
TypeScript
|
|
export function connectOrNot(id?: string | null) {
|
||
|
|
return { connect: id ? { id } : undefined };
|
||
|
|
}
|
||
|
|
export function connectOrDisconnect(id?: string | null) {
|
||
|
|
return {
|
||
|
|
connect: id ? { id } : undefined,
|
||
|
|
disconnect: id === null || undefined,
|
||
|
|
};
|
||
|
|
}
|