mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-09-15 22:32:04 +02:00
9 lines
205 B
TypeScript
9 lines
205 B
TypeScript
import "react";
|
|
|
|
declare module "react" {
|
|
interface HTMLAttributes<T> {
|
|
// Not in @types/react yet; opts editable elements out of macOS Writing Tools
|
|
writingsuggestions?: "true" | "false";
|
|
}
|
|
}
|