import { Globals } from "./index"; /** * The **`user-modify`** property has no effect in Firefox. It was originally planned to determine whether or not the content of an element can be edited by a user. * * **Initial value**: `read-only` */ export type MozUserModifyProperty = Globals | "read-only" | "read-write" | "write-only";