Skip to content
This repository was archived by the owner on Jan 8, 2026. It is now read-only.

Latest commit

 

History

History
21 lines (13 loc) · 720 Bytes

File metadata and controls

21 lines (13 loc) · 720 Bytes

Home > @datashaper/workflow > Configurable

Configurable interface

Implement this to signal that your resource is configurable. Implementors must supply their own management of the config object/observable. See the webapp's TestAppResource for an example.

Signature:

export interface Configurable<T = unknown> 

Properties

Property Modifiers Type Description
config T
config$ Observable<T>