This issue is to add support to the dart interop interface gen on `web_generator` for variable declarations in TypeScript declaration files ```ts declare const myConstVar: number = 9; declare let myMutableVar: string = "mutable"; declare var myVar: boolean = false; ``` These will be mapped to `@JS` getters and setters