20 lines
380 B
TypeScript
20 lines
380 B
TypeScript
export interface RecipeSummary {
|
|
id: number;
|
|
name: string;
|
|
level: number;
|
|
category: string;
|
|
crystal: string;
|
|
}
|
|
|
|
export interface RecipeDetail {
|
|
id: number;
|
|
name: string;
|
|
level: number;
|
|
category: string;
|
|
crystal: string;
|
|
key_item?: string | null;
|
|
ingredients: [string, number][];
|
|
hq_yields: ([string, number] | null)[];
|
|
subcrafts: [string, number][];
|
|
}
|