пн, 5 окт. 2020 г., 02:38 Bogdan Ungureanu <[email protected]>:
>
> function getStatus(): "draft" | "published" { }
>
It sounds that what you're really asking for is enums, e.g.
enum Status {
Draft,
Published
};
function getStatus(): Status { ... }
>
