-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9a7639d
commit 910b038
Showing
4 changed files
with
444 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"private": true, | ||
"packageManager": "yarn@1.22.19", | ||
"scripts": { | ||
"start": "tsx src/index.mts" | ||
}, | ||
"dependencies": { | ||
"@the-convocation/twitter-scraper": "file:../../", | ||
"tsx": "^4.15.5" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* eslint-disable @typescript-eslint/no-unused-vars */ | ||
import { | ||
Profile, | ||
Tweet, | ||
Mention, | ||
Photo, | ||
PlaceRaw, | ||
Video, | ||
} from '@the-convocation/twitter-scraper'; | ||
|
||
const a: Profile = null as unknown as Profile; | ||
const b: Tweet = null as unknown as Tweet; | ||
const c: Mention = null as unknown as Mention; | ||
const d: Photo = null as unknown as Photo; | ||
const e: PlaceRaw = null as unknown as PlaceRaw; | ||
const f: Video = null as unknown as Video; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "ESNext", | ||
"module": "ESNext", | ||
"moduleResolution": "Bundler" | ||
} | ||
} | ||
|
Oops, something went wrong.