Files

26 lines
506 B
TypeScript
Raw Permalink Normal View History

export interface CrateMeta {
crate: Crate;
}
export interface Crate {
id: string;
name: string;
updated_at: string;
versions: number[];
keywords: string[];
created_at: string;
downloads: number;
recent_downloads: number;
default_version: string;
num_versions: number;
yanked: boolean;
max_version: string;
newest_version: string;
max_stable_version: string;
description: string;
homepage: string;
repository: string;
exact_match: boolean;
trustpub_only: boolean;
}