- HERENCIA-SIMCO.md actualizado con directivas v3.7 y v3.8 - Actualizaciones de configuracion Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
201 B
TypeScript
11 lines
201 B
TypeScript
export type RepeatableOptions = {
|
|
name: string;
|
|
startDate?: number;
|
|
endDate?: number;
|
|
tz?: string;
|
|
limit?: number;
|
|
pattern?: string;
|
|
every?: number;
|
|
offset?: number;
|
|
};
|