1 2 3 4 5 6 7 8 9
import pc from "picocolors"; export function add(a: number, b: number): number { return a + b; } export function getValue(): string { return pc.green("hey"); }