пн, 5 окт. 2020 г., 02:38 Bogdan Ungureanu <bogdanungurean...@gmail.com>:

>
> function getStatus(): "draft" | "published" { }
>

It sounds that what you're really asking for is enums, e.g.

enum Status {
    Draft,
    Published
};

function getStatus(): Status { ... }

>

Reply via email to