main
Last change
on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
529 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 | /** @deprecated use `opera-android` instead */
|
---|
30 | | 'opera_mobile';
|
---|
31 |
|
---|
32 | export type TargetVersion = string;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.