1 | type Platforms = 'android' | 'ios';
|
2 | export declare function getOS(): string;
|
3 | interface Overrides {
|
4 | os?: string;
|
5 | platform?: string;
|
6 | hash?: string;
|
7 | version?: string;
|
8 | }
|
9 | interface Other {
|
10 | [key: string]: string;
|
11 | }
|
12 | export declare const docs: (path: string, hashOrOverrides?: string | (Overrides & Other) | undefined) => string;
|
13 | export declare const contributing: (path: string, hashOrOverrides?: string | (Overrides & Other) | undefined) => string;
|
14 | export declare const community: (path: string, hashOrOverrides?: string | (Overrides & Other) | undefined) => string;
|
15 | export declare const showcase: (path: string, hashOrOverrides?: string | (Overrides & Other) | undefined) => string;
|
16 | export declare const blog: (path: string, hashOrOverrides?: string | (Overrides & Other) | undefined) => string;
|
17 |
|
18 |
|
19 |
|
20 | export declare function setPlatform(target: Platforms): void;
|
21 |
|
22 |
|
23 |
|
24 | export declare function setVersion(reactNativeVersion: string): void;
|
25 | export {};
|
26 |
|
\ | No newline at end of file |