cordova-plugin-ace
Version:
Enables you to mix native UI and native code with your JavaScript and HTML. http://microsoft.github.io/ace
17 lines (13 loc) • 718 B
JavaScript
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
//
// An ordered collection of Setters (whose base class is SetterBase).
//
function SetterBaseCollection() {
ace.ObservableCollection.call(this, "Windows.UI.Xaml.SetterBaseCollection");
};
// Inheritance
SetterBaseCollection.prototype = Object.create(ace.ObservableCollection.prototype);
module.exports = SetterBaseCollection;