@kitten-science/kitten-scientists
Version:
Add-on for the wonderful incremental browser game: https://kittensgame.com/web/
17 lines • 415 B
TypeScript
import type { BuildButton, GameTab, Job } from "./index.js";
export type VillageTab = GameTab & {
censusPanel?: {
census: {
renderGovernment: (model: unknown) => void;
update: () => void;
};
};
festivalBtn: BuildButton;
};
export type JobInfo = {
name: Job;
title: string;
unlocked: boolean;
value: number;
};
//# sourceMappingURL=village.d.ts.map