fix typo in index.d.ts

This commit is contained in:
pooya parsa 2019-03-14 13:52:12 +03:30
parent 29c3c4250c
commit f89227e968

View File

@ -17,15 +17,15 @@ export interface Context {
/**
* @deprecated Use process.client instead
*/
isClient: boolean; isClient: boolean;
isClient: boolean;
/**
* @deprecated Use process.server instead
*/
isServer: boolean; isServer: boolean;
isServer: boolean;
/**
* @deprecated Use process.static instead
*/
isStatic: boolean; isStatic: boolean;
isStatic: boolean;
isDev: boolean
isHMR: boolean
route: Route