the consuming application is passing a data structure like this into the <Flowplayer> src prop to support "live stream" asset types.
type Source = {
type: string;
streamName: string;
subscriberToken?: string;
dev?: boolean;
};
But this type is not described or exported from the player package.
This type should be exported from the player package if it is a required data structure, to ensure a proper contract between the package and the consuming app and prevent a mismatch between the consuming app and the player package.