From 2f706270ba8d23a1fb797f20bd73ecaaccc8556f Mon Sep 17 00:00:00 2001 From: Jonathan Lui Date: Tue, 14 Aug 2018 14:10:39 -0700 Subject: [PATCH] doc: fix namespace causing 404 (#170) --- src/index.js | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 7e874b718..08399c2a4 100644 --- a/src/index.js +++ b/src/index.js @@ -1,5 +1,5 @@ /*! - * Copyright 2014 Google Inc. All Rights Reserved. + * Copyright 2018 Google LLC. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -14,6 +14,28 @@ * limitations under the License. */ +/** + * @namespace google + */ +/** + * @namespace google.cloud + */ +/** + * @namespace google.cloud.datastore + */ +/** + * @namespace google.cloud.datastore.v1 + */ +/** + * @namespace google.protobuf + */ +/** + * @namespace google.rpc + */ +/** + * @namespace google.type + */ + 'use strict'; var arrify = require('arrify');