feat: add keyboard separator line (#673)

* fix: blhost wrapper return with Promise.reject if error code !== 0

* feat: add keyboard separator line
This commit is contained in:
Róbert Kiss
2018-06-13 00:39:14 +02:00
committed by László Monda
parent f34cb2df56
commit 9ef11eaa34
8 changed files with 71 additions and 6 deletions
@@ -0,0 +1,5 @@
import { SvgSeparator } from './svg-separator.model';
export const convertXmlToSvgSeparator = (obj: { path: any[], $: Object }): SvgSeparator => {
return obj.path[0].$;
};
@@ -0,0 +1,2 @@
export * from './svg-separator.model';
export * from './convert-xml-to-svg-separator';
@@ -0,0 +1,4 @@
export interface SvgSeparator {
style: string;
d: string;
}