mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 10:41:56 +00:00
574c628e61
* Add script to update tokens from ethereum-lists/tokens, commit output. * Force decimals to be integers. * Eth-lists-script Typescript (#1508) * Update scripts to handle collisions, and use typescript * Add comment on duplicateAddress validator * Lock dep on ts-node * Fix tsc errors * revert tokens update * make implicit anys
32 lines
610 B
TypeScript
32 lines
610 B
TypeScript
export interface Creator {
|
|
login: string;
|
|
id: number;
|
|
avatar_url: string;
|
|
gravatar_id: string;
|
|
url: string;
|
|
html_url: string;
|
|
followers_url: string;
|
|
following_url: string;
|
|
gists_url: string;
|
|
starred_url: string;
|
|
subscriptions_url: string;
|
|
organizations_url: string;
|
|
repos_url: string;
|
|
events_url: string;
|
|
received_events_url: string;
|
|
type: string;
|
|
site_admin: boolean;
|
|
}
|
|
|
|
export interface CommitStatus {
|
|
url: string;
|
|
id: number;
|
|
state: string;
|
|
description: string;
|
|
target_url: string;
|
|
context: string;
|
|
created_at: Date;
|
|
updated_at: Date;
|
|
creator: Creator;
|
|
}
|