( db: Database, designId: string, filePath: string, content: string, )
| 482 | } |
| 483 | |
| 484 | export function createDesignFile( |
| 485 | db: Database, |
| 486 | designId: string, |
| 487 | filePath: string, |
| 488 | content: string, |
| 489 | ): DesignFile { |
| 490 | return upsertDesignFile(db, designId, filePath, content); |
| 491 | } |
| 492 | |
| 493 | export function upsertDesignFile( |
| 494 | _db: Database, |
no test coverage detected