export type IdleTimer = {
    start: () => Promise<void>;
    stop: () => void;
};
export type WordTheDayData = {
    id: number;
    uuid: string;
    hitokoto: string;
    type: string;
    from: string;
    from_who: string;
    creator: string;
    creator_uid: number;
    reviewer: number;
    commit_from: string;
    created_at: string;
    length: number;
};
