Skip to content

Commit 28f78ba

Browse files
committed
lint
1 parent 34e0e91 commit 28f78ba

3 files changed

Lines changed: 0 additions & 8 deletions

File tree

packages/bare-resource-fetcher/src/ResourceFetcher.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ class BareResourceFetcherClass extends BaseResourceFetcherClass<ActiveDownload>
158158

159159
/**
160160
* Lists all the downloaded files used by React Native ExecuTorch.
161-
*
162161
* @returns A promise that resolves to an array of URIs for all the downloaded files.
163162
*/
164163
async listDownloadedFiles(): Promise<string[]> {
@@ -194,7 +193,6 @@ class BareResourceFetcherClass extends BaseResourceFetcherClass<ActiveDownload>
194193

195194
/**
196195
* Fetches the total size of remote files. Works only for remote files.
197-
*
198196
* @param sources - The resource identifiers (URLs).
199197
* @returns A promise that resolves to the combined size of files in bytes.
200198
*/

packages/expo-resource-fetcher/src/ResourceFetcher.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@ class ExpoResourceFetcherClass extends BaseResourceFetcherClass<ActiveDownload>
144144

145145
/**
146146
* Reads the contents of a file as a string.
147-
*
148147
* @param path - Absolute file path or file URI to read.
149148
* @returns A promise that resolves to the file contents as a string.
150149
*/
@@ -155,7 +154,6 @@ class ExpoResourceFetcherClass extends BaseResourceFetcherClass<ActiveDownload>
155154

156155
/**
157156
* Lists all the downloaded files used by React Native ExecuTorch.
158-
*
159157
* @returns A promise that resolves to an array of URIs for all the downloaded files.
160158
*/
161159
async listDownloadedFiles(): Promise<string[]> {
@@ -165,7 +163,6 @@ class ExpoResourceFetcherClass extends BaseResourceFetcherClass<ActiveDownload>
165163

166164
/**
167165
* Deletes downloaded resources from the local filesystem.
168-
*
169166
* @param sources - The resource identifiers used when calling `fetch`.
170167
* @returns A promise that resolves once all specified resources have been removed.
171168
*/
@@ -183,7 +180,6 @@ class ExpoResourceFetcherClass extends BaseResourceFetcherClass<ActiveDownload>
183180

184181
/**
185182
* Fetches the total size of remote files. Works only for remote files.
186-
*
187183
* @param sources - The resource identifiers (URLs).
188184
* @returns A promise that resolves to the combined size of files in bytes.
189185
*/

packages/react-native-executorch/src/utils/BaseResourceFetcherClass.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ interface FilesSizesResult {
2222
* Contains the shared fetch loop, source dispatching, and pause/resume/cancel
2323
* plumbing. Concrete subclasses (expo, bare) implement the platform-specific
2424
* file system operations and download mechanics.
25-
*
2625
* @typeParam TDownload - The platform-specific active download descriptor type.
2726
*/
2827
export abstract class BaseResourceFetcherClass<
@@ -85,7 +84,6 @@ export abstract class BaseResourceFetcherClass<
8584
* are the same value.
8685
*
8786
* Returns `null` if the download was interrupted by `cancel()`.
88-
*
8987
* @remarks
9088
* The returned Promise must be resolvable from outside this function —
9189
* `cancel()` and `resume()` need to unblock the `fetch()` loop by calling

0 commit comments

Comments
 (0)