mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-14 20:33:30 +01:00
19 lines
293 B
TypeScript
19 lines
293 B
TypeScript
import {LazyStreams} from "lstream/lazyStreams";
|
|
|
|
export class AttributesService {
|
|
|
|
streams = new LazyStreams<ModelAttributes>(id => ({
|
|
hidden: false,
|
|
label: null,
|
|
color: null
|
|
}));
|
|
|
|
}
|
|
|
|
export interface ModelAttributes {
|
|
hidden: boolean;
|
|
label: string;
|
|
color: string;
|
|
}
|
|
|
|
|