Skip to content

Commit

Permalink
Add build files for @next
Browse files Browse the repository at this point in the history
  • Loading branch information
DafyddLlyr committed Aug 1, 2024
1 parent d1ac042 commit 81de894
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions @next/types/schemas/prototypeApplication/enums/DevelopmentType.ts
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;

0 comments on commit 81de894

Please sign in to comment.