From d26331d9493fcdb796ed5ed4c785bb7a134fa524 Mon Sep 17 00:00:00 2001 From: Evans Owino Date: Sun, 16 Jun 2019 07:04:34 +0100 Subject: [PATCH] fix: add disableIdleTimeout to CastReceiverOptions (#36093) --- types/chromecast-caf-receiver/cast.framework.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/types/chromecast-caf-receiver/cast.framework.d.ts b/types/chromecast-caf-receiver/cast.framework.d.ts index 13d2e52ce0..cee9113f81 100644 --- a/types/chromecast-caf-receiver/cast.framework.d.ts +++ b/types/chromecast-caf-receiver/cast.framework.d.ts @@ -536,6 +536,12 @@ export class CastReceiverOptions { */ customNamespaces?: any; + /** + * If true, the receiver will not set an idle timeout to close receiver if there is no activity. + * Should only be used for non media apps. + */ + disableIdleTimeout?: boolean; + /** * Sender id used for local requests. Default value is 'local'. */