import { Globals } from "./index"; /** * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes. * * **Initial value**: `auto` * * | Chrome | Firefox | Safari | Edge | IE | * | :-----: | :---------: | :-----------: | :----------: | :----: | * | **54** | **1** _-x-_ | **3.1** _-x-_ | **12** _-x-_ | **10** | * | 6 _-x-_ | | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/user-select */ export type UserSelectProperty = Globals | "-moz-none" | "all" | "auto" | "contain" | "element" | "none" | "text";