// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License.txt in the project root for license information. /// import _Base = require('../Core/_Base'); import _CommandingSurface = require('./CommandingSurface/_CommandingSurface'); var module: typeof _CommandingSurface = null; function getModule() { if (!module) { require(["./CommandingSurface/_CommandingSurface"], (m: typeof _CommandingSurface) => { module = m; }); } return module._CommandingSurface; } var publicMembers = Object.create({}, { _CommandingSurface: { get: function () { return getModule(); } } }); export = publicMembers;