Skip to content

Commit

Permalink
Add build files for @next
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamcinchak committed Dec 10, 2024
1 parent 9b271c5 commit 15feacb
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions @next/types/shared/CommunityInfrastructureLevy.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/**
* @id #CommunityInfrastructureLevy
* @description Details about the Community Infrastructure Levy planning charge, if applicable
*/
export type CommunityInfrastructureLevy = LiableForCIL | NotLiableForCIL;

type LiableForCIL = {
// Results are heirarchical (first check if project qualifies for full exemption from CIL, then CIL relief, else plain "liable")
result:
| 'exempt.annexe'
| 'exempt.extension'
| 'exempt.selfBuild'
| 'relief.charity'
| 'relief.socialHousing'
| 'liable';
};

type NotLiableForCIL = {
result: 'notLiable';
declaration: true;
};

0 comments on commit 15feacb

Please sign in to comment.