We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83982a0 commit 76feab2Copy full SHA for 76feab2
packages/google-cloud-dns/src/change.ts
@@ -14,15 +14,15 @@
14
* limitations under the License.
15
*/
16
17
-import {CreateOptions, ServiceObject} from '@google-cloud/common';
+import {ServiceObject} from '@google-cloud/common';
18
import {promisifyAll} from '@google-cloud/promisify';
19
import * as r from 'request';
20
import {teenyRequest} from 'teeny-request';
21
22
import {Record} from './record';
23
import {Zone} from './zone';
24
25
-export interface CreateChangeRequest extends CreateOptions {
+export interface CreateChangeRequest {
26
add?: Record|Record[];
27
delete?: Record|Record[];
28
}
0 commit comments