Для удобства чтения больших юнионов ```ts // До export declare type Foobar = 'foo' | 'bar' // После export declare type Foobar = | 'foo' | 'bar' ```