diff options
author | Mats Jun Larsen <me@supergrecko.com> | 2023-01-30 16:05:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-30 17:05:36 +0100 |
commit | f2fbf69069e1a991a0a3b9f9adf3f8d60a781c1d (patch) | |
tree | 787ae06885175ecce879a37e37529a9d13721983 /lib/sources/browser.ts | |
parent | 7309443a9b138fb1c2aa09f106cec043f8dc42dd (diff) | |
download | compiler-explorer-f2fbf69069e1a991a0a3b9f9adf3f8d60a781c1d.tar.gz compiler-explorer-f2fbf69069e1a991a0a3b9f9adf3f8d60a781c1d.zip |
Tsify and refactor lib/handlers/source.js (#4662)gh-6058
Diffstat (limited to 'lib/sources/browser.ts')
-rw-r--r-- | lib/sources/browser.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/sources/browser.ts b/lib/sources/browser.ts index a76d35fdf..d1c4946d7 100644 --- a/lib/sources/browser.ts +++ b/lib/sources/browser.ts @@ -28,7 +28,6 @@ import type {Source, SourceEntry} from './index'; export const browser: Source = { name: 'Browser', urlpart: 'browser', - save: undefined, list(): Promise<Omit<SourceEntry, 'path'>[]> { return Promise.resolve([]); }, |