(name: string)
| 10 | // Check if a project name is the default project. |
| 11 | // Reads the default project name from the actuator store. |
| 12 | export const isDefaultProject = (name: string): boolean => { |
| 13 | const defaultProject = appStoreUtilBridge()?.defaultProjectName(); |
| 14 | return !!defaultProject && name === defaultProject; |
| 15 | }; |
| 16 | |
| 17 | export const unknownProject = (): Project => { |
| 18 | return createProto(ProjectSchema, { |
no test coverage detected