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