Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Type narrowing #891

Open
nwatab opened this issue Nov 30, 2023 · 0 comments
Open

Type narrowing #891

nwatab opened this issue Nov 30, 2023 · 0 comments

Comments

@nwatab
Copy link

nwatab commented Nov 30, 2023

Make version literal type so that type can be narrowed.

Now

...
    interface InfoObject {
        title: string;
        description?: string;
        termsOfService?: string;
        contact?: ContactObject;
        license?: LicenseObject;
        version: string;
...

Suggestion

...
    interface InfoObject3_0 {
        title: string;
        description?: string;
        termsOfService?: string;
        contact?: ContactObject;
        license?: LicenseObject;
        version: "3.0.0"|"3.0.1"|"3.0.2"|"3.0.3"|;
...
...
    interface InfoObject3_1 {
        title: string;
        description?: string;
        termsOfService?: string;
        contact?: ContactObject;
        license?: LicenseObject;
        version: "3.1.0";
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant