mirror of
https://github.com/aljazceru/goose.git
synced 2026-01-30 11:44:38 +01:00
5 lines
112 B
TypeScript
5 lines
112 B
TypeScript
export interface IPlatformService {
|
|
// Clipboard operations
|
|
copyToClipboard(text: string): Promise<void>;
|
|
}
|