
type ISome = {
    data: string;
};

type Wow = {
    data: string;
};


const some = <
    _Key,
    _Some,
>(
    some: _Some,
    key: _Key,
) => {
    console.log('wow');
    const o = { wow: 'sdfsdfsdf', wow2: 'qweqweqweqwe', qwe: 'qweqweqwee' };
    function name() {

    }

    const wow = (...p: any) => {};
    const wow2 = () => 5;

    wow(wow2());

    const longfunctionnameqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq = () => {

    };
};