Merge branch 'develop' of https://github.com/syuilo/misskey into develop

This commit is contained in:
syuilo 2019-01-31 14:31:31 +09:00
commit dc820ffba6
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
1 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,7 @@
declare module 'is-root';
declare module 'is-root' {
function isRoot(): boolean;
declare namespace isRoot {
export function isRoot(): boolean;
namespace isRoot {} // Hack
export = isRoot;
}