mirror of
https://github.com/zhigang1992/wallet.git
synced 2026-04-29 05:05:32 +08:00
fix: remove optional type indicators
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import { useState } from 'react';
|
||||
|
||||
interface Clipboard {
|
||||
value?: string;
|
||||
onCopy?: () => void;
|
||||
hasCopied?: boolean;
|
||||
value: string;
|
||||
onCopy: () => void;
|
||||
hasCopied: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user