fix(compiler): Update types for TypeScript nullability support
This commit is contained in:
@ -11,5 +11,5 @@
|
||||
* to load templates.
|
||||
*/
|
||||
export class ResourceLoader {
|
||||
get(url: string): Promise<string> { return null; }
|
||||
get(url: string): Promise<string>|null { return null; }
|
||||
}
|
||||
|
Reference in New Issue
Block a user