- Take an English GESE Grade 5 Exam
- Take a life in the UK test
- Fill application
- Send documentation via Nationality Checking Service
- Wait for approval
- Go through ceremonies
- Apply for British Passport
- Request not to lose Spanish nationality
This file contains hidden or 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
| "use strict"; | |
| function doThrow() { | |
| throw new Error("an error!"); | |
| } | |
| function doAsyncSuccess() : Promise<void> { | |
| return new Promise<void>((resolve, reject) => { | |
| setTimeout(() => resolve(), 10); |
This file contains hidden or 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
| export class NotificationsStore { | |
| @Inject('repository') // injection by id | |
| documentRepository : DocumentRepository; | |
| private notifications : Array<Notifications>; | |
| @PostConstruct | |
| init() { | |
| // invoked after all injections have been resolved |
NewerOlder