Skip to content

DefineMap: "*" wildcard type definitions that use constructors

Choose a tag to compare

@cherifGsoul cherifGsoul released this 01 Feb 20:17
· 77 commits to master since this release

This allow to define DefineMap wildcard type * with constructors like the following:

const CustomType = DefineMap.extend({});

const CustomMap = DefineMap.extend({
    '*': CustomType
});

#426