import type { DateString } from "../../types/DateString"; export interface CountUserReceivedStarsParams { /** user ID ユーザーのID */ userId: number; /** after the given date (yyyy-MM-dd) 指定した日付以降のスターをカウント (yyyy-MM-dd) */ since?: DateString; /** before the given date (yyyy-MM-dd) 指定した日付以前のスターをカウント (yyyy-MM-dd) */ until?: DateString; }