Git Product home page Git Product logo

Comments (5)

MarcusRiemer avatar MarcusRiemer commented on July 28, 2024

Huh, I just stumbled over exactly the same issue. Is there any ETA for this issue?

from ts-json-schema-generator.

domoritz avatar domoritz commented on July 28, 2024

We found a workaround so it's not on our critical path right now. I'm happy to look at pull requests for it, though.

from ts-json-schema-generator.

domoritz avatar domoritz commented on July 28, 2024

Omit is implemented with Exclude so we should support that first. See #71.

from ts-json-schema-generator.

kayahr avatar kayahr commented on July 28, 2024

As conditional types and therefor Exclude are implemented now I guess this issue can be closed? Unfortunately there is no real description here, just a link to vega-lite internals. If there are still Omit-structures which are not working properly yet then it would be nice to add them here so I can try to fix the remaining problems.

from ts-json-schema-generator.

domoritz avatar domoritz commented on July 28, 2024

Vega-Lite's Omit

type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;

Omit in Typescript 3.5

type Omit<T, K extends keyof any> = Pick<T, Exclude<keyof T, K>>;

Here is a simple use case.

/**
 * A Person.
 */
type Person = {
    /**
     * Their Name.
     */
    name: string;
    age: number;
    location: string;
};

/**
 * Quantum person.
 */
type QuantumPerson = Omit<Person, "location">;

// equivalent to
// type QuantumPerson = {
//     name: string;
//     age: number;
// };

It all works as expected for me so I'll close this.

from ts-json-schema-generator.

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.