@userlike/messenger-types
Advanced tools
Comparing version 0.1.0-alpha.0 to 0.1.0-alpha.3
@@ -6,2 +6,13 @@ # Change Log | ||
# [0.1.0-alpha.3](https://github.com/userlike/messenger/compare/v0.1.0-alpha.2...v0.1.0-alpha.3) (2020-08-25) | ||
### Features | ||
* add state$ and getState ([881d8f1](https://github.com/userlike/messenger/commit/881d8f14c945035ec82dafeeb77f37207f5b4f4c)) | ||
# [0.1.0-alpha.0](https://github.com/userlike/messenger/compare/v0.0.1-alpha.15...v0.1.0-alpha.0) (2020-08-06) | ||
@@ -8,0 +19,0 @@ |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.UI = void 0; | ||
var UI; | ||
(function (UI) { | ||
UI["Hidden"] = "hidden"; | ||
UI["Minimized"] = "minimized"; | ||
UI["Maximized"] = "maximized"; | ||
})(UI = exports.UI || (exports.UI = {})); |
import { ActionResult } from "../ActionResult"; | ||
export interface Api extends ApiActions { | ||
import { Observable } from "../Observable"; | ||
export interface Api extends ApiActions, ApiState { | ||
version: 1; | ||
} | ||
export declare enum UI { | ||
Hidden = "hidden", | ||
Minimized = "minimized", | ||
Maximized = "maximized" | ||
} | ||
export interface State { | ||
ui: UI; | ||
} | ||
export interface ApiState { | ||
state$: Observable<State>; | ||
getState(): State; | ||
} | ||
export interface ApiActions { | ||
@@ -6,0 +19,0 @@ /** |
{ | ||
"name": "@userlike/messenger-types", | ||
"version": "0.1.0-alpha.0", | ||
"version": "0.1.0-alpha.3", | ||
"main": "dist/cjs/index.js", | ||
@@ -29,3 +29,3 @@ "module": "dist/es/index.js", | ||
}, | ||
"gitHead": "3d4e58c1c60cb12d1b38c1675b1a7d614f6cdd1c" | ||
"gitHead": "3c52dbcc55c9965cfe3c451f7e577da6f3dd9641" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11681
21
236