Skip to content

Commit 3146b7a

Browse files
committed
fix lint.
1 parent 32de5da commit 3146b7a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/tasks/src/local-apps.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,20 @@ export type LocalApp = {
4343
*/
4444
displayOnModelPage: (model: ModelData) => boolean;
4545
} & (
46-
| {
46+
| {
4747
/**
4848
* If the app supports deeplink, URL to open.
4949
*/
5050
deeplink: (model: ModelData, filepath?: string) => URL;
51-
}
52-
| {
51+
}
52+
| {
5353
/**
5454
* And if not (mostly llama.cpp), snippet to copy/paste in your terminal
5555
* Support the placeholder {{GGUF_FILE}} that will be replaced by the gguf file path or the list of available files.
5656
*/
5757
snippet: (model: ModelData, filepath?: string) => string | string[] | LocalAppSnippet | LocalAppSnippet[];
58-
}
59-
);
58+
}
59+
);
6060

6161
function isGgufModel(model: ModelData): boolean {
6262
return model.tags.includes("gguf");

0 commit comments

Comments
 (0)