mirror of
https://github.com/vale981/apheleia
synced 2025-03-05 17:41:41 -05:00
1 line
137 B
TypeScript
1 line
137 B
TypeScript
interface GreetingSettings{greeting: string; duration?: number; color?: string;}declare function greet(setting: GreetingSettings): void;
|