-
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.
- Loading branch information
1 parent
d1ac042
commit 81de894
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
@next/types/schemas/prototypeApplication/enums/DevelopmentType.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,47 @@ | ||
/** | ||
* @description Change of use | ||
*/ | ||
type ChangeOfUse = 'changeOfUse'; | ||
|
||
/** | ||
* @description Change of use of an existing single home | ||
*/ | ||
type ChangeOfUseFrom = 'changeOfUseFrom'; | ||
|
||
/** | ||
* @description Change of use to a home | ||
*/ | ||
type ChangeOfUseTo = 'changeOfUseTo'; | ||
|
||
/** | ||
* @description Conversion | ||
*/ | ||
type Conversion = 'conversion'; | ||
|
||
/** | ||
* @description Extension | ||
*/ | ||
type Extension = 'extension'; | ||
|
||
/** | ||
* @description New build | ||
*/ | ||
type NewBuild = 'newBuild'; | ||
|
||
/** | ||
* @description Not known | ||
*/ | ||
type NotKnown = 'notKnown'; | ||
|
||
/** | ||
* @id #DevelopmentType | ||
* @description Development types | ||
*/ | ||
export type DevelopmentType = | ||
| ChangeOfUse | ||
| ChangeOfUseFrom | ||
| ChangeOfUseTo | ||
| Conversion | ||
| Extension | ||
| NewBuild | ||
| NotKnown; |