Skip to content

Commit

Permalink
fix(typescript): clean up type checking
Browse files Browse the repository at this point in the history
  • Loading branch information
3cp committed Apr 13, 2020
1 parent dac53fd commit 5280308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/resource.d.ts__if_typescript
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ declare module '*.html' {
export const dependencies: string[];
export const containerless: boolean | undefined;
export const bindables: Record<string, IBindableDescription>;
export const shadowOptions: { mode: 'open' | 'closed'} | undefined;
export const shadowOptions?: { mode: 'open' | 'closed'} | null;
export function register(container: IContainer);
}

Expand Down

0 comments on commit 5280308

Please sign in to comment.