Files
goose/ui-v2/src/services/platform/IPlatformService.ts
Zane f3e586e724 Goose v2 base frontend (#2374)
Co-authored-by: Alex Hancock <alexhancock@block.xyz>
2025-04-28 10:20:00 -04:00

5 lines
112 B
TypeScript

export interface IPlatformService {
// Clipboard operations
copyToClipboard(text: string): Promise<void>;
}