mirror of
https://github.com/actions/stale.git
synced 2025-12-31 20:38:17 +00:00
11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
import {components} from '@octokit/openapi-types';
|
|
|
|
export interface IRateLimit {
|
|
limit: number;
|
|
used: number;
|
|
remaining: number;
|
|
reset: Date;
|
|
}
|
|
|
|
export type OctokitRateLimit = components['schemas']['rate-limit'];
|