7 lines
156 B
TypeScript
7 lines
156 B
TypeScript
export interface Template {
|
|
id: string
|
|
name: string
|
|
operation: 'copy' | 'sync' | 'move' | 'delete' | 'purge'
|
|
options: Record<string, any>
|
|
}
|