We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91fd7ef commit 250b0f9Copy full SHA for 250b0f9
src/modules/APM.ts
@@ -109,7 +109,7 @@ export const endFlow = (name: string) => {
109
* @param [value] - The value of the attribute. It cannot be an empty string. Use null to remove the attribute.
110
*/
111
112
-export const setFlowAttribute = (name: string, key: string, value?: string) => {
+export const setFlowAttribute = (name: string, key: string, value?: string | null) => {
113
NativeAPM.setFlowAttribute(name, key, value);
114
};
115
0 commit comments