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