Files
stale/src/interfaces/rate-limit.ts
T

11 lines
222 B
TypeScript
Raw Normal View History

2023-06-13 13:21:22 +02:00
import {components} from '@octokit/openapi-types';
export interface IRateLimit {
limit: number;
used: number;
remaining: number;
reset: Date;
}
export type OctokitRateLimit = components['schemas']['rate-limit'];