code refactor

This commit is contained in:
MaysWind
2025-01-06 21:42:36 +08:00
parent f56bef40d8
commit 166fae425d
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ export interface ClipboardEvent {
export class ClipboardTextHolder {
private text: string;
constructor(text: string) {
public constructor(text: string) {
this.text = text;
}