/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @format */ import {DeviceOS} from 'flipper-plugin'; import {Id, Metadata, StreamInterceptor, UINode} from '../types'; export function getStreamInterceptor(_: DeviceOS): StreamInterceptor { return new NoOpStreamInterceptor(); } class NoOpStreamInterceptor implements StreamInterceptor { init() { return null; } async transformNodes( nodes: Map, ): Promise<[Map, Metadata[]]> { return [nodes, []]; } async transformMetadata(metadata: Metadata): Promise { return metadata; } }