(name: string)
| 27 | }; |
| 28 | |
| 29 | export const defaultProject = (name: string): Project => { |
| 30 | return { |
| 31 | ...unknownProject(), |
| 32 | name, |
| 33 | title: "Default project", |
| 34 | }; |
| 35 | }; |
| 36 | |
| 37 | export const isValidProjectName = (name: string | undefined) => { |
| 38 | return ( |
no test coverage detected