index.ts 108 Bytes Raw Blame History Permalink 1 2 3 4 5 const world = 'Hi'; export const hello = (word: string = world): string => { return `Hello ${world}! `; }