🚧 Still under progress. Soon will be finished.

Note

Only declarations that are explicitly exported will be reflected.

check_circle The following declarations will be reflected:

export function foo(bar: number): string {
    return `${bar} is also foo`;
}

export const x = 3;

cancel The following declarations won't be reflected:

function foo(bar: number): string {
    return `${bar} is also foo`;
}

const x = 3;