Git Product home page Git Product logo

Comments (1)

roblabat avatar roblabat commented on August 22, 2024 6

The module js-schema should be imported in typescript using

import * as schema from 'js-schema';

rather than

import schema from 'js-schema';

I tried it on my current project and it raise an on error from typescript in my editor but pass the compilation and the generated javascript file works perfectly.

This typescript error seems to be an issue with the @types/js-schema types definitions module,
I changed it's index.d.ts file and it now works fine.
the index.d.ts now looks like that:

declare module 'js-schema'
{
    function schema(definition: any): schema.Schema;

    namespace schema {
        interface Schema {
            (obj: any): boolean; // test obj against the schema
        }

        interface NumberConstructor {
            min(n: number): NumberConstructor;
            max(n: number): NumberConstructor;
            below(n: number): NumberConstructor;
            above(n: number): NumberConstructor;
            step(n: number): NumberConstructor;
        }

        interface StringConstructor {
            of(charset: string): StringConstructor;
            of(length: number, charset: string): StringConstructor;
            of(minLength: number, maxLength: number, charset: string): StringConstructor;
        }

        interface ArrayConstructor {
            like(arr: Array<any>): ArrayConstructor;
            of(pattern: any): ArrayConstructor;
            of(length: number, pattern: any): ArrayConstructor;
            of(minLength: number, maxLength: number, pattern: any): ArrayConstructor;
        }

        interface ObjectConstructor {
            like(obj: any): ObjectConstructor;
            reference(obj: any): ObjectConstructor;
        }

        interface FunctionConstructor {
            reference(func: Function): FunctionConstructor;
        }
    }

    export = schema;
}

from js-schema.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.