-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: remove unused code Cleaned up code no longer needed by updating twi-ext to v0.9 * refactor: convert an import statement to a type import
- Loading branch information
1 parent
8d89133
commit b7e350f
Showing
6 changed files
with
3 additions
and
118 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
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
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
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
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 |
---|---|---|
@@ -1,59 +1,8 @@ | ||
type ProfileInterstitialType = "" | "sensitive_media" | "fake_account" | "offensive_profile_content" | "timeout"; | ||
interface UserProps { | ||
possibly_sensitive?: boolean | null; | ||
screen_name: string; | ||
profile_interstitial_type: ProfileInterstitialType; | ||
withheld_in_countries: string[]; | ||
} | ||
|
||
/** @see {isCellInnerDivProps} ts-auto-guard:type-guard */ | ||
interface CellInnerDivProps { | ||
export interface CellInnerDivProps { | ||
children: { | ||
_owner?: { | ||
key: string; | ||
}; | ||
}; | ||
} | ||
|
||
/** @see {isFocalTweetOuterReactPropsData} ts-auto-guard:type-guard */ | ||
export interface FocalTweetOuterReactPropsData { | ||
children: [ | ||
[ | ||
unknown, | ||
{ | ||
props: { | ||
children: [ | ||
{ | ||
props: { | ||
children: [ | ||
unknown, | ||
unknown, | ||
{ | ||
props: { | ||
children: [ | ||
unknown, | ||
unknown, | ||
unknown, | ||
unknown, | ||
unknown, | ||
unknown, | ||
unknown, | ||
{ | ||
props: { | ||
loggedInUser: { | ||
screen_name: string; | ||
}; | ||
}; | ||
} | ||
]; | ||
}; | ||
} | ||
]; | ||
}; | ||
} | ||
]; | ||
}; | ||
} | ||
] | ||
]; | ||
} |
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