Type Alias: CarConnection
type CarConnection =
| {
kind: "none";
}
| {
kind: "androidAuto";
}
| {
kind: "automotiveOs";
}
| {
kind: "carPlay";
};
Defined in: packages/media-session/src/types.ts:642
Where playback is being controlled from. See MediaServiceApi.getCarConnection.