|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
577 bytes
|
| Line | |
|---|
| 1 | export type ModuleName = string;
|
|---|
| 2 |
|
|---|
| 3 | export type Target =
|
|---|
| 4 | | 'android'
|
|---|
| 5 | | 'bun'
|
|---|
| 6 | | 'chrome'
|
|---|
| 7 | | 'chrome-android'
|
|---|
| 8 | | 'deno'
|
|---|
| 9 | | 'edge'
|
|---|
| 10 | | 'electron'
|
|---|
| 11 | | 'firefox'
|
|---|
| 12 | | 'firefox-android'
|
|---|
| 13 | | 'hermes'
|
|---|
| 14 | | 'ie'
|
|---|
| 15 | | 'ios'
|
|---|
| 16 | | 'node'
|
|---|
| 17 | | 'opera'
|
|---|
| 18 | | 'opera-android'
|
|---|
| 19 | | 'phantom'
|
|---|
| 20 | | 'quest'
|
|---|
| 21 | | 'react-native'
|
|---|
| 22 | | 'rhino'
|
|---|
| 23 | | 'safari'
|
|---|
| 24 | | 'samsung'
|
|---|
| 25 | /** `quest` alias */
|
|---|
| 26 | | 'oculus'
|
|---|
| 27 | /** `react-native` alias */
|
|---|
| 28 | | 'react'
|
|---|
| 29 | /** `react-native` alias */
|
|---|
| 30 | | 'reactnative'
|
|---|
| 31 | /** @deprecated use `opera-android` instead */
|
|---|
| 32 | | 'opera_mobile';
|
|---|
| 33 |
|
|---|
| 34 | export type TargetVersion = string;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.