bali-component-framework
Version:
This library provides a JavaScript based implementation of the Bali Nebula™ Component Framework.
24 lines (21 loc) • 1.28 kB
JavaScript
/************************************************************************
* Copyright (c) Crater Dog Technologies(TM). All Rights Reserved. *
************************************************************************
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. *
* *
* This code is free software; you can redistribute it and/or modify it *
* under the terms of The MIT License (MIT), as published by the Open *
* Source Initiative. (See http://opensource.org/licenses/MIT) *
************************************************************************/
'use strict';
const agents = require('../agents'); // force these to load completely
exports.Angle = require('./Angle').Angle;
exports.Boolean = require('./Boolean').Boolean;
exports.Duration = require('./Duration').Duration;
exports.Moment = require('./Moment').Moment; // depends on Duration
exports.Number = require('./Number').Number; // depends on Angle
exports.Pattern = require('./Pattern').Pattern;
exports.Percentage = require('./Percentage').Percentage;
exports.Probability = require('./Probability').Probability;
exports.Resource = require('./Resource').Resource;
exports.Tag = require('./Tag').Tag;