()
| 28 | }; |
| 29 | |
| 30 | export const nullEnvironment = (): Environment => { |
| 31 | return { |
| 32 | ...create(EnvironmentSetting_EnvironmentSchema, { |
| 33 | name: NULL_ENVIRONMENT_NAME, |
| 34 | id: "-", |
| 35 | title: "No Environment", |
| 36 | tags: {}, |
| 37 | }), |
| 38 | color: "", |
| 39 | order: -1, |
| 40 | }; |
| 41 | }; |
| 42 | |
| 43 | export const isValidEnvironmentName = (name: unknown): name is string => { |
| 44 | return ( |
no outgoing calls
no test coverage detected