Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
exotic-core / dist / src / coerce / toCoerceWrap.d.ts
Size: Mime:
declare function Shape(types: any): {
    (fn: any): any;
    types: any;
    changeByExample: any;
    wrap: (shape: any, functionOrKlass: any) => any;
    wrapMethods: (shape: any, Klass: any) => any;
    wrapFunction: (fn: any) => () => any;
};
declare const toShape: () => {
    (fn: any): any;
    types: any;
    changeByExample: any;
    wrap: (shape: any, functionOrKlass: any) => any;
    wrapMethods: (shape: any, Klass: any) => any;
    wrapFunction: (fn: any) => () => any;
};
export { toShape, Shape };
export default toShape;