##// END OF EJS Templates
ported IoC container to typescript...
ported IoC container to typescript added di/ModuleResolverBase and di/RequireJsResolver added tslint.json ./safe.ts linted

File last commit:

r0:6a5387d69bf1 default
r34:bf1098a8d031 di-typescript
Show More
_load.js
11 lines | 243 B | application/javascript | JavascriptLexer
cin
repository reorganized
r0 define([], function () {
'use strict';
return {
load: function (id, require, callback) {
require(['dojo/_base/declare'], function (declare) {
callback(declare);
});
}
};
});