From 2f65b87e3017844b947cba3d44f04d2f9c5bb385 Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Fri, 11 Jun 2021 09:06:26 +0000 Subject: [PATCH] [GitHub Actions] Updated macos-11.0 binaries --- index.d.ts | 6 ++++++ source_commit | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 191fa867..fc3f3938 100644 --- a/index.d.ts +++ b/index.d.ts @@ -306,6 +306,12 @@ export interface TemplatedApp { publish(topic: RecognizedString, message: RecognizedString, isBinary?: boolean, compress?: boolean) : boolean; /** Returns number of subscribers for this topic. */ numSubscribers(topic: RecognizedString) : number; + /** Adds a server name. */ + addServerName(hostname: string, options: AppOptions): TemplatedApp; + /** Removes a server name. */ + removeServerName(hostname: string): TemplatedApp; + /** Registers a synchronous callback on missing server names. See /examples/ServerName.js. */ + missingServerName(cb: (hostname: string) => void): TemplatedApp; } /** Constructs a non-SSL app. An app is your starting point where you attach behavior to URL routes. diff --git a/source_commit b/source_commit index 7830d09a..d87c16e2 100644 --- a/source_commit +++ b/source_commit @@ -1 +1 @@ -8591a224cf4e3809aaabf9c68ce81b910bba88af +a84c61393b19f25a5f14232a4368d57a3e562d10