aboutsummaryrefslogtreecommitdiff
path: root/test/formatters/samplecode/oxfmt/out.ts
blob: 143b5a7b88cad1f0bd5fe0aeaca3d801df109170 (plain)
1
2
3
4
5
6
interface GreetingSettings {
  greeting: string;
  duration?: number;
  color?: string;
}
declare function greet(setting: GreetingSettings): void;