feat(types): add TimerOptions interface for timer configuration
This commit is contained in:
1
src/types/mod.ts
Normal file
1
src/types/mod.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export type { TimerOptions } from './options.ts';
|
12
src/types/options.ts
Normal file
12
src/types/options.ts
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
export interface TimerOptions {
|
||||||
|
name?: string;
|
||||||
|
exec: string;
|
||||||
|
calendar: string;
|
||||||
|
description?: string;
|
||||||
|
user?: boolean;
|
||||||
|
output?: string;
|
||||||
|
after?: string[];
|
||||||
|
environment?: string[];
|
||||||
|
logfile?: string;
|
||||||
|
dryRun?: boolean;
|
||||||
|
}
|
Reference in New Issue
Block a user