copyToClipboard typing improvement.

This commit is contained in:
mike12345567 2025-01-15 15:25:55 +00:00
parent ef3ac8883e
commit fa3c5f1466
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
declare module "./helpers" { declare module "./helpers" {
export const cloneDeep: <T>(obj: T) => T export const cloneDeep: <T>(obj: T) => T
export const copyToClipboard: (value: any) => any export const copyToClipboard: (value: any) => Promise<void>
} }