Use new strict-export-declare-modifiers lint rule (#15844)

This commit is contained in:
Andy
2017-04-14 08:20:12 -07:00
committed by GitHub
parent 94f2f1d455
commit e50f8878a5
71 changed files with 415 additions and 406 deletions
+2 -2
View File
@@ -5,9 +5,9 @@
import * as express from 'express';
type GenerateMessageMethod = () => string;
export type GenerateMessageMethod = () => string;
interface ErrorConstructor {
export interface ErrorConstructor {
new (...params: any[]): Error;
}