IGNITE-8370 Web Console: Updated type.
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/24a50e10 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/24a50e10 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/24a50e10 Branch: refs/heads/ignite-10044 Commit: 24a50e1045a759aff584b5d651cc46ce9047394b Parents: 63b1422 Author: Ilya Borisov <klast...@gmail.com> Authored: Thu Dec 6 11:41:48 2018 +0700 Committer: Alexey Kuznetsov <akuznet...@apache.org> Committed: Thu Dec 6 11:41:48 2018 +0700 ---------------------------------------------------------------------- modules/web-console/frontend/app/types/index.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/24a50e10/modules/web-console/frontend/app/types/index.ts ---------------------------------------------------------------------- diff --git a/modules/web-console/frontend/app/types/index.ts b/modules/web-console/frontend/app/types/index.ts index 333c00b..df6a169 100644 --- a/modules/web-console/frontend/app/types/index.ts +++ b/modules/web-console/frontend/app/types/index.ts @@ -23,11 +23,12 @@ interface ITfMetatagsConfig { export interface IIgniteNg1StateDeclaration extends Ng1StateDeclaration { /** - * Whether to store state as last visited in local storage or not. - * true - will be saved - * false (default) - won't be saved + * Whether to store state as last visited in local storage or not: + * `true` - will be saved + * `false` (default) - won't be saved * @type {boolean} */ unsaved?: boolean, - tfMetaTags: ITfMetatagsConfig + tfMetaTags: ITfMetatagsConfig, + permission?: string }