Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 279 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 279 Bytes

jsblocks-ts

TypeScript definitions for jsblocks framework.

If you want to use dynamic properties, instead of:

blocks.observable.formatter = () => {
  // ...
};

use different syntax:

blocks.observable['formatter'] = () => {
  // ...
};