Skip to content

Commit e83d29d

Browse files
committed
🚨
1 parent 3bc7403 commit e83d29d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scrapbox.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ export interface PopupMenu {
6868
*
6969
* 関数を設定して、選択範囲が変わるたびにタイトルを変更させる事もできる
7070
*/
71-
title: string | ((text: string) => (string | undefined));
71+
title: string | ((text: string) => string | undefined);
7272
/** ボタンをクリックしたときに実行する処理
7373
*
7474
* @return ここで返した文字列で選択範囲を置換し、popupを閉じる。`undefined`を返した場合は何もしない。popupも閉じない
7575
*/
76-
onClick: (text: string) => (string | undefined);
76+
onClick: (text: string) => string | undefined;
7777
}) => void;
7878
}
7979

0 commit comments

Comments
 (0)