aws-crt
Version:
NodeJS bindings to the aws-c-* libraries
47 lines • 1.89 kB
JavaScript
;
/*
* Copyright 2010-2018 Amazon.com, Inc. or its affiliates. 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.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
result["default"] = mod;
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
// This is the entry point for the AWS CRT nodejs native libraries
/* common libs */
const platform = __importStar(require("./common/platform"));
exports.platform = platform;
const resource_safety = __importStar(require("./common/resource_safety"));
exports.resource_safety = resource_safety;
/* node specific libs */
const crt = __importStar(require("./native/crt"));
exports.crt = crt;
const io = __importStar(require("./native/io"));
exports.io = io;
const mqtt = __importStar(require("./native/mqtt"));
exports.mqtt = mqtt;
const http = __importStar(require("./native/http"));
exports.http = http;
const crypto = __importStar(require("./native/crypto"));
exports.crypto = crypto;
const auth = __importStar(require("./native/auth"));
exports.auth = auth;
const iot = __importStar(require("./native/aws_iot"));
exports.iot = iot;
const error_1 = require("./native/error");
exports.CrtError = error_1.CrtError;
//# sourceMappingURL=index.js.map