UNPKG

474 BPlain TextView Raw
1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT License. See License.txt in the project root for license information.
3
4import { CompositeMapper } from "@azure/ms-rest-js";
5
6/**
7 * @class
8 * An empty interface.
9 */
10export interface BaseResource { }
11
12export const BaseResourceMapper: CompositeMapper = {
13 serializedName: "BaseResource",
14 type: {
15 name: "Composite",
16 className: "BaseResource",
17 modelProperties: {
18 }
19 }
20};
\No newline at end of file