Sajeeb Ahamed

Results 4 issues of Sajeeb Ahamed

``` entityStyleFn: (entity) => { const entityType = entity.get('type').toLowerCase(); const data = entity.getData(); switch(entityType){ case 'attachment': return { element: 'a', attributes: { href: data.url } } } } let html...

```ts type Rectangle = { width: number; height: number; }; type Circle = { radius: number; }; const pi = 3.1415_9265_3589; // typescript infer the type const getAreaGeneric = (shape:...