caprover-api
Version:
API client for CapRover
13 lines (12 loc) • 339 B
TypeScript
export interface IAutomatedCleanupConfigs {
mostRecentLimit: number;
cronSchedule: string;
timezone: string;
}
export declare class AutomatedCleanupConfigsCleaner {
static sanitizeInput(instance: IAutomatedCleanupConfigs): {
mostRecentLimit: number;
cronSchedule: string;
timezone: string;
};
}