-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore:
BuildingRegulation
enum (#234)
- Loading branch information
1 parent
8bb96a8
commit 27b23e0
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
types/schemas/prototypeApplication/enums/BuildingRegulation.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/** | ||
* @description Part M4(2) of the Building Regulations 2010 | ||
*/ | ||
type M42 = 'm42'; | ||
|
||
/** | ||
* @description Part M4(3)(2a) of the Building Regulations 2010 | ||
*/ | ||
type M432a = 'm432a'; | ||
|
||
/** | ||
* @description Part M4(3)(2b) of the Building Regulations 2010 | ||
*/ | ||
type M432b = 'm432b'; | ||
|
||
/** | ||
* @description None of these | ||
*/ | ||
type None = 'none'; | ||
|
||
/** | ||
* @id #BuildingRegulation | ||
* @description Building regulations | ||
*/ | ||
export type BuildingRegulation = M42 | M432a | M432b | None; |